Our APIs provide programmatic access to the Getpaid solution. This page contains a comprehensive reference for all resources of the Getpaid public API. For walkthrough documentation please see Getpaid guides for step by step usage of the Getpaid platform including the API and Getpaid API integration for the technical aspects of this Getpaid API.
To get started, book a demo and sign up at https://getpaid.io. This will give you access to the Getpaid dashboard where you can configure your account and retrieve your credentials needed to authenticate with Getpaid API.
Getpaid provides a Postman collection to test the API features in sandbox. You can download the Postman collection and the environments to start testing the Getpaid API.
| Type | Format |
|---|---|
amount-minor |
Amount in the minor currency unit (e.g. 100 cents for 1 EUR). |
country |
The country code fields follow the ISO 3166-1 alpha-2 standard in uppercase. Examples: DE, US. |
currency |
The currency code fields follow the ISO 4217 standard in uppercase. Examples: EUR, USD. |
date |
Dates are formatted using the complete date format according to the ISO 8601 standard: YYYY-MM-DD. Example: 2023-09-30. |
date-time |
Date-time fields are formatted using the ISO 8601 standard for the combined date and time in UTC with 3 seconds fractional digits: YYYY-MM-DDThh:mm:ss.SSSZ. Example: 2015-09-01T23:59:59.479Z. |
date-time-offset |
Date-time fields with time-zone are formatted ISO 8601 standard for the combined date and time with the time-zone and no second fractional digits: YYYY-MM-DDThh:mm:ssTZD. Example: 2015-09-01T23:59:59+01:00. |
email |
Email fields should follow the RFC 5322 standard. Example: jon.smith@acme.com |
hex-color |
Colors are represented as a string starting with # followed by six hexadecimal digits. Each pair of digits represents the intensity of red, green, and blue components respectively. Examples: #FFFFFF, #000000, #FF5733. |
id |
Identifiers are formatted as a string of 3 alphabetic characters (which represents the type of the identified object), one underscore and 26 alphanumeric characters. Every identifier generated in our system is globally unique. Examples: acc_44678r08jtm8zbt227tzhc4nw5, doc_473cr1y0ghbyc3m1yfbwvn3nxx. |
ip-address |
IP fields are formatted using the Internet Protocol version 4 (IPv4) standard: x.x.x.x where x must be a decimal value between 0 and 255. Example: 192.158.1.38. |
version |
A resource version. For resources that can evolved over time, a unique reference of the snapshot used in other resource. For example, the account information used for a payment, the information used for the statement descriptor or the processing configuration are tighted to the version of the account. |
In order to authenticate with Getpaid API you need to request an OAuth 2.0 access token using your client ID and secret by calling the Request access token endpoint.
Check full details on how API authentication and authorization works and how to get your client credentials.
clientCredentials https://auth.getpaid.io/oauth/tokenaccounts:read - Allows to read accounts and onboarding applications.
accounts:read_write - Allows to read, create and/or operate accounts and onboarding applications.
payments:read - Allows to read payments and checkouts.
payments:read_write - Allows to read, create and/or operate payments and checkouts.
Obtain an OAuth 2.0 access token to authenticate API requests
| client_id required | string Your OAuth client ID for the environment, live or sandbox, you are requesting the token for. |
| client_secret required | string Your OAuth client Secret for the environment, live or sandbox, you are requesting the token for. |
| audience required | string <uri> Enum: "https://api.sandbox.getpaid.io" "https://api.getpaid.io" The API you wish to integrate with. Use this to switch between sandbox and live environment. |
| grant_type required | string The OAuth grant type. Value: "client_credentials" |
{- "client_id": "g6gWu46zeP0HH4jkW3i22yJ2shDrNxJ8",
- "client_secret": "VJG133mOfuHhSfkIS6gozTXzr7FBm-0HS42OZ0cmxJkcHyGrVZMLGJtyruTA4CQv",
- "grant_type": "client_credentials"
}{- "access_token": "eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiIxIn0.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
- "scope": "accounts:read documents:read_write payments:read",
- "expires_in": 86400,
- "token_type": "Bearer"
}Payment checkout sessions for one-time payments that the buyer can complete using Getpaid hosted checkout.
Create a payment checkout session.
Webhooks related:
checkout_completed: sent when the checkout process is completed with a successful payment.checkout_expired: sent when the checkout life time is reached without a successful payment independent of whether payments were attempted or not.payment_captured: sent when the payment funds are captured and secured.payment_failed: sent when a payment fails due to business (decline) or technical issues.| Getpaid-Idempotency-Key required | string [ 10 .. 100 ] characters ^[a-zA-Z0-9_-]{10,100}$ Example: 5c255194-30ec-11ed-a261-0242ac120002 A unique idempotency key to allow safe retrying. See Getpaid API idempotency for more details. |
| reference required | string [ 1 .. 50 ] characters An identifier in your system. It is recommended to make it unique but the uniqueness is not enforced by the solution. |
| amount required | integer <amount-minor> The payment amount in the minor currency unit (e.g. 100 cents for 1 EUR). |
| currency required | string <currency> = 3 characters The processing currency code according to the ISO-4217 standard |
| description required | string [ 1 .. 250 ] characters A description of the checkout session. This will be visible to the buyer in the payment page but not in the bank or card statement. |
| statement_descriptor | string [ 1 .. 22 ] characters ^[a-zA-Z0-9 *\._-]{1,22}$ The statement descriptor that will appear on the buyer's bank or card statement.
It will be preceded by the standard prefix |
| expires_in | string = 5 characters ^\d{2}:\d{2}$ The span in hours and minutes of time after which the checkout will expire. |
object | |
required | object The list of payment splits for the accounts involved in the funds flow. See how splits work for more information. |
object Buyer details to pre-fill during checkout. | |
object Terms for a new standing instruction to gather the consent in the initial payment in a series of recurring payments. | |
required | object Configuration for the redirect behavior after the payment is completed. |
object Configuration for webhooks to receive payment status updates. |
{- "reference": "ORD-202510-0232",
- "amount": 10000,
- "currency": "EUR",
- "description": "Order #202510-0232",
- "splits": {
- "type": "per_transaction",
- "accounts": [
- {
- "type": "seller",
- "id": "acc_4f5zanqzxfg9w9jj5e81bm6bc9",
- "split": {
- "type": "fixed",
- "amount": 9000
}
}, - {
- "type": "platform",
- "id": "acc_4q90qx2kdczs59yqfq34p09qx6",
- "split": {
- "type": "fixed",
- "amount": 1000
}, - "processing_fee": {
- "percentage": 100
}
}
]
},
}{- "id": "cko_44678r08jtm8zbt227tzhc4nw5",
- "status": "initiated",
- "reference": "ORD-202510-0232",
- "created_at": "2025-10-24T14:45:22.993Z",
- "updated_at": "2025-10-24T14:45:22.993Z",
- "expires_at": "2025-10-24T14:15:22.993Z",
- "flow": {
- "next_step": {
- "type": "redirect",
}
}, - "payment_methods": {
- "type": "default",
- "available": [
- {
- "type": "card",
- "scheme": "mastercard"
}, - {
- "type": "card",
- "scheme": "visa"
}, - {
- "type": "sepa_direct_debit"
}
]
}, - "splits": {
- "type": "per_transaction",
- "accounts": [
- {
- "type": "seller",
- "id": "acc_4f5zanqzxfg9w9jj5e81bm6bc9",
- "version": "2",
- "legal_name": "Car Garage GmbH",
- "split": {
- "type": "fixed",
- "amount": 9000
}, - "processing_fee": {
- "percentage": 0
}
}, - {
- "type": "platform",
- "id": "acc_4q90qx2kdczs59yqfq34p09qx6",
- "version": "0",
- "legal_name": "Titan Auto Parts GmbH",
- "split": {
- "type": "fixed",
- "amount": 1000
}, - "processing_fee": {
- "percentage": 100
}
}
]
}
}Retrieve a payment checkout session.
| checkout_id required | string <id> [ 30 .. 50 ] characters Example: cko_4kf9v6xp00hzc99rdwr5m97wce The unique identifier of the checkout. |
{- "id": "cko_44678r08jtm8zbt227tzhc4nw5",
- "status": "completed",
- "reference": "ORD-202510-0232",
- "created_at": "2025-10-10T06:43:39.355Z",
- "updated_at": "2025-10-10T06:44:34.843Z",
- "expires_at": "2025-10-10T07:13:39.355Z",
- "amount": 1000,
- "currency": "EUR",
- "description": "Order 202510-0232",
- "payment_methods": {
- "type": "default",
- "selected": {
- "type": "card",
- "scheme": "visa"
}, - "available": [
- {
- "type": "card",
- "scheme": "visa"
}, - {
- "type": "card",
- "scheme": "mastercard"
}, - {
- "type": "sepa_direct_debit"
}
]
}, - "splits": {
- "type": "per_transaction",
- "accounts": [
- {
- "type": "seller",
- "id": "acc_4f5zanqzxfg9w9jj5e81bm6bc9",
- "version": "2",
- "legal_name": "AutoZentrum Düsseldorf GmbH",
- "split": {
- "type": "fixed",
- "amount": 900
}, - "processing_fee": {
- "percentage": 0,
- "amount": 0
}
}, - {
- "type": "platform",
- "id": "acc_4q90qx2kdczs59yqfq34p09qx6",
- "version": "0",
- "legal_name": "Titan Auto Parts GmbH",
- "split": {
- "type": "fixed",
- "amount": 100
}, - "processing_fee": {
- "percentage": 100,
- "amount": 45
}
}
]
}, - "payments": [
- {
- "index": 0,
- "id": "pay_4yd8tht4hwkpk3g14w4sey01mt",
- "status": "succeeded",
- "created_at": "2025-10-10T06:44:23.387Z",
- "updated_at": "2025-10-10T06:44:34.843Z",
- "method": {
- "type": "card",
- "display_hint": "424242******4242",
- "card": {
- "scheme": "visa",
- "holder_name": "Jane Doe",
- "first_digits": "424242",
- "last_digits": "4242",
- "expiry_month": 12,
- "expiry_year": 2030
}
}
}
], - "theme": {
- "id": "thm_4jkgtzffbf9pzem7dgfhdeztwa",
- "name": "Default Titan Auto Parts GmbH"
}, - "events": [
- {
- "index": 3,
- "type": "completed",
- "occurred_at": "2025-10-10T06:44:34.843Z"
}, - {
- "index": 2,
- "type": "payment_succeeded",
- "occurred_at": "2025-10-10T06:44:34.765Z",
- "payment": {
- "id": "pay_4yd8tht4hwkpk3g14w4sey01mt",
- "method": {
- "type": "card"
}
}
}, - {
- "index": 1,
- "type": "payment_initiated",
- "occurred_at": "2025-10-10T06:44:23.387Z",
- "payment": {
- "id": "pay_4yd8tht4hwkpk3g14w4sey01mt",
- "method": {
- "type": "card"
}
}
}, - {
- "index": 0,
- "type": "started",
- "occurred_at": "2025-10-10T06:43:45.123Z"
}
]
}Query checkouts filtering, and sorting and paginating results.
See Query resources for more examples and details about other resources, pagination and everything related to operate the Getpaid solution.
| Getpaid-Idempotency-Key required | string [ 10 .. 100 ] characters ^[a-zA-Z0-9_-]{10,100}$ Example: 5c255194-30ec-11ed-a261-0242ac120002 A unique idempotency key to allow safe retrying. See Getpaid API idempotency for more details. |
| type required | string Enum: "checkouts" "payments" The type of the Getpaid solution resources to query. It is not needed to set this property, as it is inferred from the request path |
| first | integer [ 1 .. 100 ] Default: 20 Pagination. The number of elements that will be retrieved. |
| after | string <= 250 characters Pagination. The |
object Filters to reduce the data set to query. If not set, all resources available of the given type will be queried. | |
Array of objects non-empty unique Fields to sort the data by. If not set, the data will be sorted by the creation date descending. |
{- "type": "checkouts",
- "filters": {
- "seller_legal_name": "Titan Biking",
- "statuses": [
- "expired",
- "failed"
]
}
}{- "type": "checkouts",
- "cursor": "Q3VyaW9zaXR5IEtpbGxlZCB0aGUgQ2F0Cg==",
- "data": [
- {
- "id": "chk_4y7kptsvn11qq6d354g5tx735v",
- "reference": "ORD-202510-0232",
- "status": "expired",
- "amount": 1000,
- "currency": "EUR",
- "created_at": "2023-03-15T12:34:56.999Z",
- "updated_at": "2023-03-15T12:35:56.999Z",
- "expires_at": "2023-03-15T13:34:56.999Z",
- "payment_methods": [
- {
- "type": "card",
- "scheme": "visa"
}, - {
- "type": "card",
- "scheme": "mastercard"
}, - {
- "type": "sepa_direct_debit"
}
], - "seller": {
- "id": "acc_44678r08jtm8zbt227tzhc4nw5",
- "legal_name": "Titan Biking"
}, - "parties": [
- {
- "id": "acc_5y789s19kum9act338uaic5ox6",
- "type": "platform",
- "legal_name": "Titan Auto Parts GmbH"
}
]
}, - {
- "id": "chk_4y7kptsvn11qq6d354g5tx736w",
- "reference": "ORD-202511-0133",
- "status": "failed",
- "amount": 1000,
- "currency": "EUR",
- "created_at": "2023-03-16T10:20:30.999Z",
- "updated_at": "2023-03-16T10:22:45.999Z",
- "expires_at": "2023-03-16T11:20:30.999Z",
- "payment_methods": [
- {
- "type": "card",
- "scheme": "visa"
}, - {
- "type": "sepa_direct_debit"
}
], - "seller": {
- "id": "acc_44678r08jtm8zbt227tzhc4nw5",
- "legal_name": "Titan Biking"
}, - "parties": [
- {
- "id": "acc_5y789s19kum9act338uaic5ox6",
- "type": "platform",
- "legal_name": "Titan Auto Parts GmbH"
}
]
}
]
}Create and manage payments initiated by the platform on behalf of the buyer.
For recurring and unscheduled payments based on a previous standing instruction.
Create a payment initiated by the platform on behalf of a buyer.
Webhooks related:
payment_captured: sent when the payment funds are captured and secured.payment_failed: sent when a payment fails due to business (decline) or technical issues.| Getpaid-Idempotency-Key required | string [ 10 .. 100 ] characters ^[a-zA-Z0-9_-]{10,100}$ Example: 5c255194-30ec-11ed-a261-0242ac120002 A unique idempotency key to allow safe retrying. See Getpaid API idempotency for more details. |
| reference required | string [ 1 .. 50 ] characters An identifier in your system. It is recommended to make it unique but the uniqueness is not enforced by the solution. |
| amount required | integer <amount-minor> The payment amount in the minor currency unit (e.g. 100 cents for 1 EUR). |
| currency required | string <currency> = 3 characters The processing currency code according to the ISO-4217 standard |
| statement_descriptor | string [ 1 .. 22 ] characters ^[a-zA-Z0-9 *\._-]{1,22}$ The statement descriptor that will appear on the buyer's bank or card statement.
It will be preceded by the standard prefix |
required | object The list of payment splits for the accounts involved in the funds flow. See how splits work for more information. |
required | object Standing instruction for recurring payments. |
object Configuration for webhooks to receive payment status updates. |
{- "reference": "ORD-202510-0232",
- "amount": 10000,
- "currency": "EUR",
- "splits": {
- "type": "per_transaction",
- "accounts": [
- {
- "type": "seller",
- "id": "acc_4f5zanqzxfg9w9jj5e81bm6bc9",
- "split": {
- "type": "fixed",
- "amount": 9000
}
}, - {
- "type": "platform",
- "id": "acc_4q90qx2kdczs59yqfq34p09qx6",
- "split": {
- "type": "fixed",
- "amount": 1000
}, - "processing_fee": {
- "percentage": 100
}
}
]
}, - "standing_instruction": {
- "id": "sti_4tbftjwzxja1h71nzas1g0g1xm"
},
}{- "id": "pay_4tbftjwzxja1h71nzas1g0g1xm",
- "status": "captured",
- "reference": "ORD-202510-0232",
- "statement_descriptor": "GP*TITAN*202510-0232",
- "created_at": "2025-10-24T14:45:22.993Z",
- "updated_at": "2025-10-24T14:45:22.993Z",
- "method": {
- "type": "card",
- "display_hint": "424242******4242",
- "card": {
- "scheme": "visa",
- "holder_name": "Jane Doe",
- "first_digits": "424242",
- "last_digits": "4242",
- "expiry_month": 12,
- "expiry_year": 2030
}
}, - "splits": {
- "type": "per_transaction",
- "accounts": [
- {
- "type": "seller",
- "id": "acc_4f5zanqzxfg9w9jj5e81bm6bc9",
- "version": "2",
- "legal_name": "Car Garage GmbH",
- "split": {
- "type": "fixed",
- "amount": 9000
}, - "processing_fee": {
- "percentage": 0
}
}, - {
- "type": "platform",
- "id": "acc_4q90qx2kdczs59yqfq34p09qx6",
- "version": "0",
- "legal_name": "Titan Auto Parts GmbH",
- "split": {
- "type": "fixed",
- "amount": 1000
}, - "processing_fee": {
- "percentage": 100
}
}
]
}, - "totals": {
- "net": 9933,
- "captured": 1000,
- "refunded": 0,
- "refundable": 1000,
- "processing_fees": 67,
- "accounts": [
- {
- "type": "seller",
- "id": "acc_4f5zanqzxfg9w9jj5e81bm6bc9",
- "version": "0",
- "legal_name": "Garage Deusthclangen AG",
- "net": 900,
- "captured": 900,
- "refunded": 0,
- "refundable": 900,
- "processing_fees": 0
}, - {
- "type": "platform",
- "id": "acc_4q90qx2kdczs59yqfq34p09qx6",
- "version": "0",
- "legal_name": "Titan Auto Parts GmbH",
- "net": 33,
- "captured": 100,
- "refunded": 0,
- "refundable": 100,
- "processing_fees": 67
}
]
}
}Retrieve a payment.
| payment_id required | string <id> [ 30 .. 50 ] characters Example: pay_4a4m2pjycdb1jbj68h1rvk9kcz The unique identifier of the payment. |
{- "id": "pay_4a4m2pjycdb1jbj68h1rvk9kcz",
- "status": "refunded",
- "reference": "ORD-202510-0232",
- "created_at": "2025-09-01T22:05:48.479Z",
- "updated_at": "2025-10-12T09:06:11.773Z",
- "amount": 1000,
- "currency": "EUR",
- "statement_descriptor": "TITAN*202510-0232",
- "origin": {
- "type": "api"
}, - "method": {
- "type": "card",
- "display_hint": "424242******4242",
- "card": {
- "scheme": "visa",
- "holder_name": "Jane Doe",
- "first_digits": "424242",
- "last_digits": "4242",
- "expiry_month": 12,
- "expiry_year": 2030
}
}, - "splits": {
- "type": "per_transaction",
- "accounts": [
- {
- "type": "seller",
- "id": "acc_4f5zanqzxfg9w9jj5e81bm6bc9",
- "version": "2",
- "legal_name": "AutoZentrum Düsseldorf GmbH",
- "split": {
- "type": "fixed",
- "amount": 900
}, - "processing_fee": {
- "percentage": 0
}
}, - {
- "type": "platform",
- "id": "acc_4q90qx2kdczs59yqfq34p09qx6",
- "version": "0",
- "legal_name": "Titan Auto Parts GmbH",
- "split": {
- "type": "fixed",
- "amount": 100
}, - "processing_fee": {
- "percentage": 100
}
}
]
}, - "authentication": {
- "type": "3ds",
- "status": "succeeded",
- "result": {
- "code": "Y",
- "eci": "05"
}
}, - "refunds": [
- {
- "id": "rfd_4a4m2pjycdb1jbj68h1rvk9kcz",
- "status": "completed",
- "type": "full",
- "reference": "ORD-202510-0232",
- "created_at": "2025-09-01T22:05:48.479Z",
- "updated_at": "2025-09-01T22:05:48.479Z",
- "amount": 1000
}
], - "standing_instruction": {
- "id": "sti_4tbftjwzxja1h71nzas1g0g1xm",
- "status": "active",
- "terms": {
- "type": "recurring"
}, - "first": {
- "type": "payment",
- "id": "pay_4a4m2pjycdb1jbj68h1rvk9kcz"
}
}, - "totals": {
- "net": -67,
- "captured": 1000,
- "refunded": 1000,
- "refundable": 0,
- "processing_fees": 67,
- "accounts": [
- {
- "type": "seller",
- "id": "acc_4f5zanqzxfg9w9jj5e81bm6bc9",
- "version": "0",
- "legal_name": "Garage Deusthclangen AG",
- "net": 0,
- "captured": 900,
- "refunded": 900,
- "refundable": 0,
- "processing_fees": 0
}, - {
- "type": "platform",
- "id": "acc_4q90qx2kdczs59yqfq34p09qx6",
- "version": "0",
- "legal_name": "Titan Auto Parts GmbH",
- "net": -67,
- "captured": 100,
- "refunded": 100,
- "refundable": 0,
- "processing_fees": 67
}
]
}, - "events": [
- {
- "index": 6,
- "type": "refund_completed",
- "occurred_at": "2025-10-12T09:06:11.773Z",
- "amount": 1000,
- "currency": "EUR"
}, - {
- "index": 5,
- "type": "refund_initiated",
- "occurred_at": "2025-10-12T09:00:00.000Z",
- "amount": 1000,
- "currency": "EUR"
}, - {
- "index": 4,
- "type": "captured",
- "occurred_at": "2025-10-01T22:05:48.479Z",
- "amount": 1000,
- "currency": "EUR"
}, - {
- "index": 3,
- "type": "authorized",
- "occurred_at": "2025-09-01T22:05:48.479Z",
- "amount": 1000,
- "currency": "EUR"
}, - {
- "index": 2,
- "type": "authenticated",
- "occurred_at": "2025-09-01T22:05:35.000Z",
- "authentication": {
- "type": "3ds"
}
}, - {
- "index": 1,
- "type": "authentication_required",
- "occurred_at": "2025-09-01T22:05:30.000Z",
- "authentication": {
- "type": "3ds"
}
}, - {
- "index": 0,
- "type": "initiated",
- "occurred_at": "2025-09-01T22:05:20.000Z",
- "amount": 1000,
- "currency": "EUR"
}
]
}Refund a captured payment fully or partially.
Webhooks related:
payment_refunded: sent when the funds are returned to the buyer.payment_refund_failed: sent when a refund process fails due to business or technical issues.| payment_id required | string <id> [ 30 .. 50 ] characters Example: pay_4a4m2pjycdb1jbj68h1rvk9kcz The ID of the payment to refund. |
| Getpaid-Idempotency-Key required | string [ 10 .. 100 ] characters ^[a-zA-Z0-9_-]{10,100}$ Example: 5c255194-30ec-11ed-a261-0242ac120002 A unique idempotency key to allow safe retrying. See Getpaid API idempotency for more details. |
| type required | string The type of refund to be processed. |
| reference required | string [ 1 .. 50 ] characters An identifier in your system. It is recommended to make it unique but the uniqueness is not enforced by the solution. |
object Configuration for webhooks to receive refund status updates. |
{- "type": "full",
- "reference": "RFD-202510-0002",
}{- "id": "rfd_4a4m2pjycdb1jbj68h1rvk9kcz",
- "type": "full",
- "status": "initiated",
- "reference": "RFD-202510-0002",
- "created_at": "2025-10-25T07:11:57.761Z",
- "updated_at": "2025-10-25T07:11:57.761Z",
- "amount": 1000,
- "splits": {
- "accounts": [
- {
- "id": "acc_4f5zanqzxfg9w9jj5e81bm6bc9",
- "split": {
- "amount": 900
}
}, - {
- "id": "acc_4q90qx2kdczs59yqfq34p09qx6",
- "split": {
- "amount": 100
}
}
]
}
}Query payments filtering, and sorting and paginating results.
See Query resources for more examples and details about other resources, pagination and everything related to operate the Getpaid solution.
| Getpaid-Idempotency-Key required | string [ 10 .. 100 ] characters ^[a-zA-Z0-9_-]{10,100}$ Example: 5c255194-30ec-11ed-a261-0242ac120002 A unique idempotency key to allow safe retrying. See Getpaid API idempotency for more details. |
| type required | string Enum: "payments" "checkouts" The type of the Getpaid solution resources to query. It is not needed to set this property, as it is inferred from the request path |
| first | integer [ 1 .. 100 ] Default: 20 Pagination. The number of elements that will be retrieved. |
| after | string <= 250 characters Pagination. The |
object Filters to reduce the data set to query. If not set, all resources available of the given type will be queried. | |
Array of objects non-empty unique Fields to sort the data by. If not set, the data will be sorted by the creation date descending. |
{- "type": "payments",
- "filters": {
- "seller_legal_name": "Titan Biking",
- "statuses": [
- "captured"
]
}
}{- "type": "payments",
- "cursor": "Q3VyaW9zaXR5IEtpbGxlZCB0aGUgQ2F0Cg==",
- "data": [
- {
- "id": "pay_4y7kptsvn11qq6d354g5tx735v",
- "reference": "ORD-202510-0232",
- "status": "captured",
- "amount": 1000,
- "currency": "EUR",
- "created_at": "2023-03-15T12:34:56.999Z",
- "updated_at": "2023-03-15T12:34:56.999Z",
- "method": {
- "type": "card",
- "scheme": "visa",
- "display_hint": "424242******4242"
}, - "seller": {
- "id": "acc_44678r08jtm8zbt227tzhc4nw5",
- "legal_name": "Titan Biking"
}, - "parties": [
- {
- "id": "acc_5y789s19kum9act338uaic5ox6",
- "type": "platform",
- "legal_name": "Titan Auto Parts GmbH"
}
]
}, - {
- "id": "pay_4y7kptsvn11qq6d354g5tx736w",
- "reference": "ORD-202511-0133",
- "status": "captured",
- "amount": 1000,
- "currency": "EUR",
- "created_at": "2023-03-15T12:34:56.999Z",
- "updated_at": "2023-03-15T12:34:56.999Z",
- "method": {
- "type": "card",
- "scheme": "visa",
- "display_hint": "411111******1111"
}, - "seller": {
- "id": "acc_44678r08jtm8zbt227tzhc4nw5",
- "legal_name": "Titan Biking"
}, - "parties": [
- {
- "id": "acc_5y789s19kum9act338uaic5ox6",
- "type": "platform",
- "legal_name": "Titan Auto Parts GmbH"
}
]
}
]
}The checkout_completed webhook is sent when the checkout process is completed with a successful payment.
| Getpaid-Trace-Id required | string Example: 96ce50247f87f540bb2d86771b3728b8 The trace identifier for the request. It is a good idea to log this and provide it with any support requests |
| id required | string <id> [ 30 .. 50 ] characters The unique identifier of the event. |
| type required | string The type of event. Value: "checkout_completed" |
| version required | string The version of the event type. Value: "v2" |
| occurred_at required | string <date-time> = 24 characters The UTC date and time at which the event occurred. |
required | object The event data specific to each event type and version. |
{- "id": "evt_4a4m2pjycdb1jbj68h1rvk9kcz",
- "type": "checkout_completed",
- "version": "v2",
- "occurred_at": "2025-09-01T22:05:48.479Z",
- "data": {
- "id": "cko_4kf9v6xp00hzc99rdwr5m97wce",
- "origin": {
- "type": "api",
- "id": "cko_4kf9v6xp00hzc99rdwr5m97wce"
}, - "reference": "ORD-202510-0232",
- "payment": {
- "id": "pay_4a4m2pjycdb1jbj68h1rvk9kcz",
- "standing_instruction": {
- "id": "sti_4tbftjwzxja1h71nzas1g0g1xm",
- "status": "active"
}
}
}
}The checkout_failed webhook is sent when the checkout lifetime is reached without a successful payment attempt, and at least one payment was attempted but none were successful.
It can be received days after the checkout is created depending on the payment method selected.
| Getpaid-Trace-Id required | string Example: 96ce50247f87f540bb2d86771b3728b8 The trace identifier for the request. It is a good idea to log this and provide it with any support requests |
| id required | string <id> [ 30 .. 50 ] characters The unique identifier of the event. |
| type required | string The type of event. Value: "checkout_failed" |
| version required | string The version of the event type. Value: "v2" |
| occurred_at required | string <date-time> = 24 characters The UTC date and time at which the event occurred. |
required | object The event data specific to each event type and version. |
{- "id": "evt_4a4m2pjycdb1jbj68h1rvk9kcz",
- "type": "checkout_failed",
- "version": "v2",
- "occurred_at": "2025-09-01T22:05:48.479Z",
- "data": {
- "id": "cko_4kf9v6xp00hzc99rdwr5m97wce",
- "origin": {
- "type": "api",
- "id": "cko_4kf9v6xp00hzc99rdwr5m97wce"
}, - "reference": "ORD-202510-0232",
- "payment": {
- "id": "pay_4a4m2pjycdb1jbj68h1rvk9kcz",
- "method": {
- "type": "card"
}
}
}
}The checkout_in_progress webhook is sent when the checkout lifetime reaches its expiration, but a payment attempt is still in progress.
Banking payment methods are typical examples where this webhook can be sent, as the payment processing can take several days depending on the bank processing times.
| Getpaid-Trace-Id required | string Example: 96ce50247f87f540bb2d86771b3728b8 The trace identifier for the request. It is a good idea to log this and provide it with any support requests |
| id required | string <id> [ 30 .. 50 ] characters The unique identifier of the event. |
| type required | string The type of event. Value: "checkout_in_progress" |
| version required | string The version of the event type. Value: "v2" |
| occurred_at required | string <date-time> = 24 characters The UTC date and time at which the event occurred. |
required | object The event data specific to each event type and version. |
{- "id": "evt_4a4m2pjycdb1jbj68h1rvk9kcz",
- "type": "checkout_in_progress",
- "version": "v2",
- "occurred_at": "2025-09-01T22:05:48.479Z",
- "data": {
- "id": "cko_4kf9v6xp00hzc99rdwr5m97wce",
- "origin": {
- "type": "api",
- "id": "cko_4kf9v6xp00hzc99rdwr5m97wce"
}, - "reference": "ORD-202510-0232",
- "payment": {
- "id": "pay_4a4m2pjycdb1jbj68h1rvk9kcz",
- "method": {
- "type": "card"
}, - "estimated_update_before": "2025-09-01T22:05:48.479Z"
}
}
}The checkout_unattempted webhook is sent when the checkout life time is reached without a payment.
| Getpaid-Trace-Id required | string Example: 96ce50247f87f540bb2d86771b3728b8 The trace identifier for the request. It is a good idea to log this and provide it with any support requests |
| id required | string <id> [ 30 .. 50 ] characters The unique identifier of the event. |
| type required | string The type of event. Value: "checkout_unattempted" |
| version required | string The version of the event type. Value: "v2" |
| occurred_at required | string <date-time> = 24 characters The UTC date and time at which the event occurred. |
required | object The event data specific to each event type and version. |
{- "id": "evt_4a4m2pjycdb1jbj68h1rvk9kcz",
- "type": "checkout_unattempted",
- "version": "v2",
- "occurred_at": "2025-09-01T22:05:48.479Z",
- "data": {
- "id": "cko_4kf9v6xp00hzc99rdwr5m97wce",
- "origin": {
- "type": "api",
- "id": "cko_4kf9v6xp00hzc99rdwr5m97wce"
}, - "reference": "ORD-202510-0232"
}
}The payment_captured webhook is sent when a payment is successfully captured and the funds are secured for the seller.
| Getpaid-Trace-Id required | string Example: 96ce50247f87f540bb2d86771b3728b8 The trace identifier for the request. It is a good idea to log this and provide it with any support requests |
| id required | string <id> [ 30 .. 50 ] characters The unique identifier of the event. |
| type required | string The type of event. Value: "payment_captured" |
| version required | string The version of the event type. Value: "v2" |
| occurred_at required | string <date-time> = 24 characters The UTC date and time at which the event occurred. |
required | object The event data specific to each event type and version. |
{- "id": "evt_4a4m2pjycdb1jbj68h1rvk9kcz",
- "type": "payment_captured",
- "version": "v2",
- "occurred_at": "2025-09-01T22:05:48.479Z",
- "data": {
- "id": "pay_4a4m2pjycdb1jbj68h1rvk9kcz",
- "origin": {
- "type": "api",
- "id": "cko_4kf9v6xp00hzc99rdwr5m97wce"
}, - "reference": "ORD-202510-0232"
}
}The payment_failed webhook is sent when a payment fails due to business (decline) or technical issues.
| Getpaid-Trace-Id required | string Example: 96ce50247f87f540bb2d86771b3728b8 The trace identifier for the request. It is a good idea to log this and provide it with any support requests |
| id required | string <id> [ 30 .. 50 ] characters The unique identifier of the event. |
| type required | string The type of event. Value: "payment_failed" |
| version required | string The version of the event type. Value: "v2" |
| occurred_at required | string <date-time> = 24 characters The UTC date and time at which the event occurred. |
required | object The event data specific to each event type and version. |
{- "id": "evt_4a4m2pjycdb1jbj68h1rvk9kcz",
- "type": "payment_failed",
- "version": "v2",
- "occurred_at": "2025-09-01T22:05:48.479Z",
- "data": {
- "id": "pay_4a4m2pjycdb1jbj68h1rvk9kcz",
- "origin": {
- "type": "api",
- "id": "cko_4kf9v6xp00hzc99rdwr5m97wce"
}, - "reference": "ORD-202510-0232",
- "status": "failed"
}
}The payment_refunded webhook is sent when a refund is successfully completed and the funds have been returned to the buyer.
| Getpaid-Trace-Id required | string Example: 96ce50247f87f540bb2d86771b3728b8 The trace identifier for the request. It is a good idea to log this and provide it with any support requests |
| id required | string <id> [ 30 .. 50 ] characters The unique identifier of the event. |
| type required | string The type of event. Value: "payment_refunded" |
| version required | string The version of the event type. Value: "v2" |
| occurred_at required | string <date-time> = 24 characters The UTC date and time at which the event occurred. |
required | object The event data specific to each event type and version. |
{- "id": "evt_4a4m2pjycdb1jbj68h1rvk9kcz",
- "type": "payment_refunded",
- "version": "v2",
- "occurred_at": "2025-09-01T22:05:48.479Z",
- "data": {
- "id": "pay_4a4m2pjycdb1jbj68h1rvk9kcz",
- "origin": {
- "type": "api",
- "id": "cko_4kf9v6xp00hzc99rdwr5m97wce"
}, - "reference": "ORD-202510-0232",
- "refund": {
- "id": "rfd_4a4m2pjycdb1jbj68h1rvk9kcz",
- "reference": "RFD-202510-0002"
}
}
}The payment_refund_failed webhook is sent when a refund has failed.
| Getpaid-Trace-Id required | string Example: 96ce50247f87f540bb2d86771b3728b8 The trace identifier for the request. It is a good idea to log this and provide it with any support requests |
| id required | string <id> [ 30 .. 50 ] characters The unique identifier of the event. |
| type required | string The type of event. Value: "payment_refund_failed" |
| version required | string The version of the event type. Value: "v2" |
| occurred_at required | string <date-time> = 24 characters The UTC date and time at which the event occurred. |
required | object The event data specific to each event type and version. |
{- "id": "evt_4a4m2pjycdb1jbj68h1rvk9kcz",
- "type": "payment_refund_failed",
- "version": "v2",
- "occurred_at": "2025-09-01T22:05:48.479Z",
- "data": {
- "id": "pay_4a4m2pjycdb1jbj68h1rvk9kcz",
- "origin": {
- "type": "api",
- "id": "cko_4kf9v6xp00hzc99rdwr5m97wce"
}, - "reference": "ORD-202510-0232",
- "refund": {
- "id": "rfd_4a4m2pjycdb1jbj68h1rvk9kcz",
- "reference": "RFD-202510-0002"
}
}
}Onboarding applications to collect the necessary information from sellers to create their Getpaid accounts and start accepting payments.
Create an onboarding application initiated by the platform so the seller can start submitting their information.
Webhooks related:
application_submitted: sent when an onboarding application is submitted by a seller for review.application_completed: sent when the onboarding application is approved and completed.| Getpaid-Idempotency-Key required | string [ 10 .. 100 ] characters ^[a-zA-Z0-9_-]{10,100}$ Example: 5c255194-30ec-11ed-a261-0242ac120002 A unique idempotency key to allow safe retrying. See Getpaid API idempotency for more details. |
| reference required | string [ 1 .. 50 ] characters An identifier in your system. It is recommended to make it unique but the uniqueness is not enforced by the solution. |
required | object The details of the person representing the seller that is applying for the Getpaid account if known at the time of application creation. |
object The seller business details if known at the time of application creation. | |
required | object Configuration for the redirect behavior after the onboarding application is submitted. |
object Configuration for webhooks to receive onboarding application status updates. |
{- "reference": "53426",
- "applicant": {
- "email": "markus.keller@garagegermany.de"
},
}{- "id": "app_4fekhxdpss1et7rjp8t7rdpnw4",
- "status": "initiated",
- "reference": "53426",
- "created_at": "2025-10-24T14:45:22.993Z",
- "updated_at": "2025-10-24T14:45:22.993Z",
- "expires_at": "2025-10-24T14:15:22.993Z",
- "flow": {
- "next_step": {
- "type": "redirect",
}
}
}Extends the lifespan of an onboarding application so the seller can continue submitting their information.
| application_id required | string <id> [ 30 .. 50 ] characters Example: app_4fekhxdpss1et7rjp8t7rdpnw4 The ID of the application to refresh. |
| Getpaid-Idempotency-Key required | string [ 10 .. 100 ] characters ^[a-zA-Z0-9_-]{10,100}$ Example: 5c255194-30ec-11ed-a261-0242ac120002 A unique idempotency key to allow safe retrying. See Getpaid API idempotency for more details. |
{- "id": "app_4fekhxdpss1et7rjp8t7rdpnw4",
- "updated_at": "2025-10-24T14:45:22.993Z",
- "expires_at": "2025-10-24T14:15:22.993Z",
- "flow": {
- "next_step": {
- "type": "redirect",
}
}
}The application_submitted webhook is sent when an onboarding application is submitted by a seller for review.
| Getpaid-Trace-Id required | string Example: 96ce50247f87f540bb2d86771b3728b8 The trace identifier for the request. It is a good idea to log this and provide it with any support requests |
| id required | string <id> [ 30 .. 50 ] characters The unique identifier of the event. |
| type required | string The type of event. Value: "application_submitted" |
| version required | string The version of the event type. Value: "v2" |
| occurred_at required | string <date-time> = 24 characters The UTC date and time at which the event occurred. |
required | object The event data specific to each event type and version. |
{- "id": "evt_4a4m2pjycdb1jbj68h1rvk9kcz",
- "type": "application_submitted",
- "version": "v2",
- "occurred_at": "2025-09-01T22:05:48.479Z",
- "data": {
- "id": "app_4fekhxdpss1et7rjp8t7rdpnw4",
- "reference": "ORD-202510-0232"
}
}The application_completed webhook is sent when the onboarding application is approved and completed.
| Getpaid-Trace-Id required | string Example: 96ce50247f87f540bb2d86771b3728b8 The trace identifier for the request. It is a good idea to log this and provide it with any support requests |
| id required | string <id> [ 30 .. 50 ] characters The unique identifier of the event. |
| type required | string The type of event. Value: "application_completed" |
| version required | string The version of the event type. Value: "v2" |
| occurred_at required | string <date-time> = 24 characters The UTC date and time at which the event occurred. |
required | object The event data specific to each event type and version. |
{- "id": "evt_4a4m2pjycdb1jbj68h1rvk9kcz",
- "type": "application_completed",
- "version": "v2",
- "occurred_at": "2025-09-01T22:05:48.479Z",
- "data": {
- "id": "app_4fekhxdpss1et7rjp8t7rdpnw4",
- "reference": "ORD-202510-0232"
}
}Query Getpaid solution resources obtaining specific data by filtering and retrieving each resource type:
checkouts - Query checkoutspayments - Query payments| resource_type required | string Enum: "checkouts" "payments" The type of the resources to query. |
| type required | string The type of the Getpaid solution resources to query. It is not needed to set this property, as it is inferred from the request path |
| first | integer [ 1 .. 100 ] Default: 20 Pagination. The number of elements that will be retrieved. |
| after | string <= 250 characters Pagination. The |
object Filters to reduce the data set to query. If not set, all resources available of the given type will be queried. | |
Array of objects non-empty unique Fields to sort the data by. If not set, the data will be sorted by the creation date descending. |
{- "type": "checkouts",
- "filters": {
- "seller_legal_name": "Titan Biking",
- "statuses": [
- "expired",
- "failed"
]
}
}{- "type": "payments",
- "cursor": "Q3VyaW9zaXR5IEtpbGxlZCB0aGUgQ2F0Cg==",
- "data": [
- {
- "id": "pay_4y7kptsvn11qq6d354g5tx735v",
- "reference": "ORD-202510-0232",
- "status": "captured",
- "amount": 1000,
- "currency": "EUR",
- "created_at": "2023-03-15T12:34:56.999Z",
- "updated_at": "2023-03-15T12:34:56.999Z",
- "method": {
- "type": "card",
- "scheme": "visa",
- "display_hint": "424242******4242"
}, - "seller": {
- "id": "acc_44678r08jtm8zbt227tzhc4nw5",
- "legal_name": "Titan Biking"
}, - "parties": [
- {
- "id": "acc_5y789s19kum9act338uaic5ox6",
- "type": "platform",
- "legal_name": "Titan Auto Parts GmbH"
}
]
}, - {
- "id": "pay_4y7kptsvn11qq6d354g5tx736w",
- "reference": "ORD-202511-0133",
- "status": "captured",
- "amount": 1000,
- "currency": "EUR",
- "created_at": "2023-03-15T12:34:56.999Z",
- "updated_at": "2023-03-15T12:34:56.999Z",
- "method": {
- "type": "card",
- "scheme": "visa",
- "display_hint": "411111******1111"
}, - "seller": {
- "id": "acc_44678r08jtm8zbt227tzhc4nw5",
- "legal_name": "Titan Biking"
}, - "parties": [
- {
- "id": "acc_5y789s19kum9act338uaic5ox6",
- "type": "platform",
- "legal_name": "Titan Auto Parts GmbH"
}
]
}
]
}