Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

If you are new to developing API integrations, you may want to start by reading our Examples of Authorisation and use of the Actionstep API in the staging environment using Postman.

Note

Please note: there are two domain names here, api.actionstepstaging.com and ap-southeast-2.actionstepstaging.com. The first (api) is used for all oAuth2 requests (create token, renew token etc) and ap-southeast-2 is where all the JSON:API calls are made. Note that this second url is dynamic and should be fetched from the JSON data in the access token response. While it is generally static in our staging environment, it will be dynamic in production as different organizations are stored in different regions.

...

client_id: same as above

client_secret: same as above

grant_type: authorization_code

...

Info
The production endpoint is dynamic. You need to use the api_endpoint property from the token response when building the url for resource requests: api_endpoint + "rest/" + resource

Create Some Data

Send an HTTP POST with a JSON payload.

...