Sample API calls
A few examples using cURL to demonstrate how the Construct API works
curl https://apis.accela.com/v4/records \
-H 'Content-type: application/json' \
-H 'Accept: application/json' \
-H 'x-accela-appid: 635355074966095701' \
-H 'x-accela-environment: TEST' \
-H 'x-accela-agency: Islandton'
curl https://apis.accela.com/v4/agencies \
-H 'Content-type: application/json' \
-H 'Accept: application/json' \
-H 'x-accela-appid: 635355074966095701' \
-H 'x-accela-environment: TEST' \
-H 'x-accela-agency: Islandton'
curl https://apis.accela.com/v4/owners \
-H 'Content-type: application/json' \
-H 'Accept: application/json' \
-H 'x-accela-appid: 635355074966095701' \
-H 'x-accela-environment: TEST' \
-H 'x-accela-agency: Islandton' \
-H 'Authorization: your-token-goes-here'
-d '{}'
For more informtion check out the Accela API docs.