{ "opencollection": "1.0.0", "info": { "name": "Clerk Backend Account Portal Payment Attempts API", "version": "2025-11-10" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Payment Attempts", "type": "folder" }, "items": [ { "info": { "name": "List User Payment Attempts", "type": "http" }, "http": { "method": "GET", "url": "https://api.clerk.com/v1/v1/me/billing/payment_attempts", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Applies a limit to the number of results returned.\nCan be used for paginating the results together with `offset`." }, { "name": "offset", "value": "", "type": "query", "description": "Skip the first `offset` results when paginating.\nNeeds to be an integer greater or equal to zero.\nTo be used in conjunction with `limit`." }, { "name": "paginated", "value": "", "type": "query", "description": "Whether to paginate the results.\nIf true, the results will be paginated.\nIf false, the results will not be paginated." } ] }, "docs": "Returns a list of payment attempts for the current user." }, { "info": { "name": "Get User Payment Attempt", "type": "http" }, "http": { "method": "GET", "url": "https://api.clerk.com/v1/v1/me/billing/payment_attempts/:paymentAttemptID", "params": [ { "name": "paymentAttemptID", "value": "", "type": "path", "description": "The ID of the payment attempt to retrieve" } ] }, "docs": "Returns details of a specific payment attempt for the current user." } ] } ], "bundled": true }