Auth API
- How to authenticate
Deliver API
- Persons
- Businesses
- External Accounts
- Cards
- Transfers
- Schedules
- Eligibility
- Transfer Groups
- Balance
- Reports
- Subledgers
- Book Transfers
Verify API
Webhooks API
- Overview And Set Up
- Event Types and Payloads
- Configure webhooks
- Trigger webhooks
- Secure webhooks
How to authenticate
Request Access Token
POST
/
oauth
/
token
Copy
curl --request POST \
--url https://api-sandbox.orum.io/oauth/token \
--header 'Content-Type: application/json' \
--data '{
"client_id": "<string>",
"client_secret": "<string>"
}'
Copy
{
"access_token": "<string>",
"token_type": "<string>",
"expires_in": 123
}
The auth token is valid for one hour.
Body
Response
200
application/json
200 response.
The response is of type object
.
Was this page helpful?
Copy
curl --request POST \
--url https://api-sandbox.orum.io/oauth/token \
--header 'Content-Type: application/json' \
--data '{
"client_id": "<string>",
"client_secret": "<string>"
}'
Copy
{
"access_token": "<string>",
"token_type": "<string>",
"expires_in": 123
}
Assistant
Responses are generated using AI and may contain mistakes.