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>"
]
}
}
Create a Pool
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>"
]
}
}
The access token received from the authorization server in the OAuth 2.0 flow.
OK
The response is of type object
.