Skip to main content
GET
https://api.dintero.com/v1
/
accounts
/
{aid}
/
management
/
settings
/
approvals
/
payments
aid_management_settings_approvals_payment_get
curl --request GET \
  --url https://api.dintero.com/v1/accounts/{aid}/management/settings/approvals/payments \
  --header 'Authorization: Bearer <token>'
{
  "payments": [
    {
      "products": [
        {}
      ],
      "payment_methods": [
        {}
      ],
      "country_code": "<string>",
      "organization_number": "<string>",
      "bank_accounts": [
        {
          "bank_account_currency": "NOK",
          "payout_currency": "NOK",
          "bank_name": "<string>",
          "bank_account_number": "<string>",
          "bank_account_country_code": "NO",
          "bank_identification_code": "DNBANOKKXXX"
        }
      ],
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_at": "2023-11-07T05:31:56Z",
      "created_by": "1c92f7e1-2897-4d46-bdcc-c127a914fb4e",
      "updated_at": "2023-11-07T05:31:56Z",
      "deleted_by": "1c92f7e1-2897-4d46-bdcc-c127a914fb4e",
      "deleted_at": "2023-11-07T05:31:56Z",
      "form_submitter": {
        "email": "jsmith@example.com",
        "name": "<string>",
        "title": "<string>"
      },
      "links": [
        {
          "href": "<string>"
        }
      ],
      "mcc": 5814
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication (token authentication) should be used for accessing the API.

Use Get Token to get an access token for client credentials. Pass the token in the request header:

Authorization: Bearer {access_token}

where the access_token is JSON Web Tokens (JWT).

Path Parameters

aid
string<^[PT]{1}\d{8}$>
required

An id that uniquely identifies the account.

Required string length: 9

Query Parameters

case_status
enum<string>[]

filter CDDs by status

Available options:
ACTIVE,
DECLINED,
UNDER_MANUAL_REVIEW,
AUTOMATIC_REVIEW,
WAITING_FOR_SIGNATURE,
WAITING_FOR_DECLARATION,
ERROR,
ARCHIVED,
WAITING_FOR_DETAILS,
TERMINATED

Response

List of ApprovalsPaymentResponse objects

payments
object[]
Last modified on June 19, 2026