POST
/
api
/
v1
/
csp
/
validate
/
{account_id}
/
{validation_id}
Complete Validation
curl --request POST \
  --url https://sandbox.paylias.xyz/gateway/api/v1/csp/validate/{account_id}/{validation_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'idempotency-key: <idempotency-key>' \
  --header 'x-partner-id: <x-partner-id>' \
  --data '{
  "amounts": [
    {
      "amount": 1,
      "currency": "USD"
    },
    {
      "amount": 3,
      "currency": "USD"
    }
  ]
}'

Authorizations

Authorization
string
header
required

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

Headers

x-partner-id
string
required
Example:

"part_ct23b6420or249k5boag"

idempotency-key
string
default:""
required

The Idempotency Key - usually a UUID

Path Parameters

account_id
string
required

The unique identifier for the account

Example:

"acct_ctf930420orabtojo3r0"

validation_id
string
required

The unique identifier for the validation

Example:

"val_cvgo7uc20or769prtiu0"

Body

application/json