curl --request PATCH \
--url https://api.sandbox.tesouro.com/identity/v1/organizations/{organizationId}/disabled-payment-rails \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"disable": [
"<string>"
],
"enable": [
"<string>"
]
}
'{
"disabledPaymentRails": [
"<string>"
],
"organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}Allows disabling or enabling payment rails (payment_rail:ach, payment_rail:fednow, payment_rail:rtp). Requires the org:write:all scope.
Token types: APP, USER | Required scopes: org:write:all
curl --request PATCH \
--url https://api.sandbox.tesouro.com/identity/v1/organizations/{organizationId}/disabled-payment-rails \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"disable": [
"<string>"
],
"enable": [
"<string>"
]
}
'{
"disabledPaymentRails": [
"<string>"
],
"organizationId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The organization ID.
Cancellation token.
Payment rails to disable for the organization. Valid values are: "payment_rail:ach", "payment_rail:fednow", "payment_rail:rtp".
Payment rails to enable for the organization (remove from disabled list). Valid values are: "payment_rail:ach", "payment_rail:fednow", "payment_rail:rtp".
Was this page helpful?