The following workaround is helpful if you encounter any issues while performing export actions from the Concur professional account.
FAQ. Why am I unable to export from the Concur professional account (US region) except the first page?
Answer. This is due to a change in the base URI’s geolocation. The present base URI is https://us.api.concursolutions.com
and can be resolved by changing the geolocation to us2
in the underlying JSON structure of the connection through Postman. The following steps explain the process of how to change the base URI through Postman or through Postman collection.
A. Retrieve the connection details through GET method
- Sign in to your Postman account.
- Create a collection or HTTP Request.
- Select the GET method.
-
Paste the URL in this format
https://api.integrator.io/v1/connections/{{connection_id_of_your_connection}}
in the request header. For example, if your connection ID is1234xyz1234
, then pastehttps://api.integrator.io/v1/connections/1234xyz1234
. - In Authorization, enter the Bearer scheme and append the token. For more information on how to manage and retrieve the API token from your integrator.io account, see Managing API tokens.
- In Content-type, enter application/json.
- Click Send.
- Copy the response.
B. Update the connection details through PUT method
- Open another request with the same URL as mentioned in step 4 of retrieve the connection details through the GET method section.
- Select the PUT method.
- Navigate to Header, select Raw, and JSON.
- Paste the copied response in the body. (Copied in step 8 of retrieve the connection details through the GET method section).
- In Authorization, enter the Bearer scheme and append the token. For more information on how to manage and retrieve the API token from your integrator.io account, see Managing API tokens.
- In Content-type, enter application/json.
- Select Body.
- In the JSON body, replace the existing baseURI from
https://us.api.concursolutions.com
tohttps://us2.api.concursolutions.com
. - Replace the authURI and tokenURI with
us2
geolocation.
- In token.token, add your Concur access token.
- In token.refreshToken, add your Concur refresh token. You can copy the refresh token from step 10 response.
- Click Send.
Comments
Please sign in to leave a comment.