Application ProvidersSetup merchant application payment provider configuration

Setup merchant application payment provider configuration

Links an active payment provider to the given application, enables the requested payment methods, stores credentials, and registers a webhook endpoint with the provider.

curl -X POST "https://api.example.com/api/v1/applications/example_string/providers" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -d '{
  "name": "stripe",
  "paymentMethods": [
    "card",
    "blik"
  ],
  "credentials": {
    "apiKey": "rk_live_..."
  }
}'
{
  "applicationId": "00000000-0000-0000-0000-000000000000",
  "provider": "stripe",
  "isActive": true,
  "paymentMethods": [
    "card",
    "blik"
  ],
  "keyFingerprint": "rk_live_****x1sf",
  "createdAt": "2026-01-01T00:00:00.000Z",
  "updatedAt": "2026-01-01T00:00:00.000Z"
}
POST
/api/v1/applications/{applicationId}/providers
POST
Base URLstring

Target server for requests. Edit to use your own host.

Bearer Token (JWT)
Bearer Tokenstring
Required

Bearer token (JWT) - just enter the token, "Bearer" prefix will be added automatically

Content-Typestring
Required

The media type of the request body

Options: application/json
namestring
Required

Provider name identifier.

Max length: 100
paymentMethodsarray
Required

Payment method types to enable for this provider.

credentialsstring
Required

Provider credentials.

Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token (JWT). Authentication token required.

Path Parameters

Body

application/json
namestring
Required

Provider name identifier.

Example:
stripe
paymentMethodsarray
Required

Payment method types to enable for this provider.

Example:
["card","blik"]
credentialsstring
Required

Provider credentials.

Responses