Step 4: Call API Endpoints
Now that you have a valid access_token, you can start using the ParqEx API. To make an authenticated request of one of the ParqEx API endpoints, the Authorization
header must be supplied:
POST /api/oauth/v1/endpoints/sync HTTP/1.1
Host: https://parqex.com
Content-Type: application/json
Accept: application/json
Authorization: Bearer <ACCESS_TOKEN>
Accept-Charset: utf-8
Accept-Encoding: gzip
where <ACCESS_TOKEN>
is a valid access token for the given user. The Beam service will return with a JSON response.
Last updated
Was this helpful?