Add Pay Ids to System

POST /admin/pay-id

Add Pay Ids to System

Adds a list of pay IDs to the system. These pay IDs will be available to be assigned to an account.

application/json

Body Required

POST /admin/pay-id
curl \
 -X POST http://api.example.com/admin/pay-id \
 -H "Content-Type: application/json" \
 -d '{"":[["string"]]}'
Request example
{
  "": [
    [
      "string"
    ]
  ]
}
Request examples
{
  "": [
    [
      "string"
    ]
  ]
}