Setting Up Postman
This guide provides step-by-step instructions on how to set up the FIS® Accounting Data as a Service™ Postman collection, enabling you to smoothly test our APIs.
Load Accounting Data as a Service™ Swagger JSON into Postman
-
Import the Collection: Open Postman and click on the
Import
button at the top left corner. A dialog box will appear as shown below: -
Load the API: Paste the following link to load the version 2 of the API:
https://api.railz.ai/swagger/v2
-
Verify the Collection: A new collection named
Railz API
should now be created in your Postman workspace.
Set Up Authentication
-
Add a New Request: Right-click on the
Railz API
collection and selectAdd Request
. Use the following URL for the new request:https://auth.railz.ai/getAccess
-
Configure Basic Auth:
- Under the
Authorization
tab, selectBasic Auth
. - Enter
{{api_client_id}}
as the username and{{api_client_secret}}
as the password.
- Under the
-
Store the Bearer Token: Modify the
getAccess
request'sTests
script to save the received bearer token to thebearerToken
variable:var jsonData = pm.response.json(); pm.collectionVariables.set("bearerToken", jsonData.access_token);
Set Up Collection Variables
-
Access Collection Variables: Click on the
Railz API
collection name and then click on theVariables
tab. -
Define Variables: Add three variables:
bearerToken
,api_client_id
, andapi_client_secret
. Fill in the values forapi_client_id
andapi_client_secret
as provided in your Dashboard. See Manage API Keys for more details.
Calling the API
Here’s how to use the token and call an endpoint after setting up:
-
Authenticate: First, call the
getAccess
endpoint to load the authorization token into thebearerToken
variable. -
Make API Calls: Use the bearer token to call an endpoint, such as the List Businesses endpoint. The Authorization header should already be configured for you.
For most APIs, a connectionUuid
is required as our data is linked to the connection made between Accounting Data as a Service™ and a supported ASP. For instance, to list the accounts of a specific connection, first retrieve the connectionUuid
by listing the connections of a business:
With the connectionUuid
returned in the response, you can then call the Get Accounts API as follows:
Try it Now
You are all set to explore Accounting Data as a Service™ APIs using Postman.
Get Support
For any Postman-related queries or issues, contact our support team.
Updated 30 days ago