Get an Organization

GET /organization

Retrieve the Organization associated with the API Key in the Authorization header

Headers

  • Authorization string Required

    Authorize your API calls with an Arta API token

Responses

GET /organization
curl \
 -X GET https://api.arta.io/organization \
 -H "Authorization: ARTA_APIKey s0e1t2e3c4a5s6t7r8o9n10o11m12y"
Response examples (200)
# Headers
content-type: application/json
x-arta-request-id: FkBjuxbwLLTx4RoAARkx

# Payload
{
  "api_version": "2021-01-01",
  "billing_terms": "invoicing",
  "company_name": "Hudson Street Collective LLC",
  "created_at": "2022-10-23T13:39:12.504731",
  "display_name": "Hudson Street",
  "id": 4392,
  "name": "Hudson Street Gallery",
  "shortcode": "HSC",
  "status": "active",
  "updated_at": "2023-05-02T23:13:31.193097"
}
Response examples (404)
# Headers
content-type: application/json
x-arta-request-id: FkBjuxbwLLTx4RoAARkx

# Payload
{
  "errors": {
    "detail": "string"
  }
}