Skip to main content
PUT
https://checkout.dintero.com/v1
/
admin
/
gateways
/
collector
admin_checkout_id_gw_collector_put
curl --request PUT \
  --url https://checkout.dintero.com/v1/admin/gateways/collector \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "collector": {
    "url": "<string>",
    "username": "<string>",
    "store_id": 123,
    "country": "<string>",
    "password": "<string>",
    "options": {
      "enable_on_hold": false,
      "settlement_reference_fields": "account_id",
      "customer_client": {
        "customers_client_id": "<string>",
        "customers_client_secret": "<string>",
        "customers_client_audience": "<string>"
      }
    },
    "stores": [
      {
        "store_id": 123,
        "country": "<string>",
        "currency": "NOK",
        "segment": "B2C"
      }
    ]
  }
}
'
{
  "error": {
    "message": "<string>",
    "code": "<string>",
    "errors": [
      {}
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.dintero.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

X-API-Key authentication for accessing admin endpoints. Use Create api-key to create a key.

The content of the header should look like the following:

x-api-key: {api_key}

Body

application/json
collector
object
required

configuration for Collector Bank GW

Response

Gateway updated

Last modified on May 12, 2026