ARTICLE
Where can I see an example API integration workflow?
Discover insights on key topics that enhance understanding and offer practical knowledge for everyday applications.
Example Workflow
Here’s an example sequence for a typical integration:
- Authenticate: obtain an OAuth2 access token using your client credentials.
-
List Corporates: call
GET /v1/corporatesto retrieve the list of available corporate entities. -
Get Corporate Details: use the
idfrom the list to callGET /v1/corporates/{id}for detailed information. -
List Operating Entities: use a corporate’s
idas a filter withGET /v1/entities?CorporateId=.... -
Retrieve Account Information: ccall
GET /v1/accounts(optionally filtered byEntityId) to retrieve account data, then get specific account details, balances, and statements as needed. - Manage Cards & Expenses: use the card endpoints to list cards, retrieve detailed card information, and view expense and receipt details.