Comaround Access Requirements

Comaround Access Needs

For Comaround, API access is done via an access token generated using a username and password.

After creating the token, you can use the curl commands below to test that the access is working as expected:

  1. Generate the bearer-token
curl --location --request POST 'https://api2.comaround.com/rest/v2/token/' \--header 'Ocp-Apim-Subscription-Key: <subscription-key>' \--header 'Content-Type: application/json' \--data-raw '{  "username": "svc.moveworks",  "password": "<service-account-password>"}'
  1. Return articles from Comaround API
curl --location --request GET 'https://api2.comaround.com/rest/v2/search?currentPage=1&tags=text' \--header 'Ocp-Apim-Subscription-Key: <subscription-key>' \--header 'Authorization: Bearer <bearer-token>'