arrow_back Back to all endpoints
GET https://test-api.finerworks.com/v3/test_my_credentials

Test Connection

Use this for your first test and make sure your credentials are linked to your FinerWorks account information.

Body

Name Description Type Additional information
credentials Include your authorization credentials object here. authorization_credentials

Required

Example JSON Body

application/json, text/json

{
  "credentials": {
    "web_api_key": "b2bce832-622d-4e95-8f4f-9034454a4a35",
    "app_key": "89bc0d5d-ba42-4c43-8c93-641de5d3ca25"
  }
}

Sample Code Library

curl --location --request GET 'https://test-api.finerworks.com/v3/test_my_credentials' \
--header 'Content-Type: application/json' \
--header 'web_api_key: my-web-api-key-goes-here' \
--header 'app_key: my-app-key-goes-here' \
--data-raw '{
  "credentials": {
    "web_api_key": "b2bce832-622d-4e95-8f4f-9034454a4a35",
    "app_key": "89bc0d5d-ba42-4c43-8c93-641de5d3ca25"
  }
}'