POST
/
api
/
payments
/
pools
curl --request POST \
  --url http://localhost:55001/api/payments/pools \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "accountIDs": [
    "<string>"
  ]
}'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "accounts": [
      "<string>"
    ]
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json

Response

200
application/json

OK

The response is of type object.