Skip to main content
GET
/
payout_method_schemas
Generate payout method schemas
curl --request GET \
  --url https://api.withacclaim.com/v1/payout_method_schemas \
  --header 'Authorization: Bearer <token>'
{
  "schemas": [
    {
      "payout_method_type": "UnitedStatesAch",
      "description": "<string>",
      "currency": "<string>",
      "country": "<string>",
      "fields": [
        {
          "name": "<string>",
          "label": "<string>",
          "type": "text",
          "required": true,
          "placeholder": "<string>",
          "maxLength": 123,
          "minLength": 123,
          "pattern": "<string>",
          "options": "<array>",
          "helpText": "<string>",
          "entityTypeConstraint": "<string>"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

country
string
required

ISO 3166-1 alpha-2 country code (e.g. US)

Required string length: 2
entity_type
enum<string>
default:Individual

Entity type of payee

Available options:
Individual,
Company

Response

List of payout method schemas.

schemas
object[]
Last modified on April 14, 2026