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

Get Company Info

Use this to get essential information about FinerWorks.

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": "sample string 1",
    "app_key": "sample string 2"
  }
}

Sample Code Library

curl --location --request GET 'https://test-api.finerworks.com/v3/get_company_info' \
--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": "sample string 1",
    "app_key": "sample string 2"
  }
}'