Get available payment methods

Beta

Get a list of all available payment methods for a specific Processing Channel ID.

Query Parameters
  • processing_channel_id
    Type: string Pattern: ^(pc)_(\w{26})$
    required

    The processing channel to be used for payment methods retrieval.

Responses
  • application/json
  • 401

    Unauthorized

  • 404

    Processing channel not found

Request Example for get/payment-methods
Shell Curl
curl 'https://{prefix}.api.sandbox.checkout.com/payment-methods?processing_channel_id=pc_q4dbxom5jbgudnjzjpz7j2z6uq' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
  "methods": [
    {
      "type": "accel",
      "partner_merchant_id": "Z7X8LKJ3PQR5N"
    }
  ]
}