GET
/
connectors
/
meta
curl --request GET \
  --url https://api.stackone.com/connectors/meta \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "provider": "hibob",
    "provider_name": "Hibob",
    "category": "hris",
    "active": true,
    "models": {
      "employees": {
        "create": {
          "apiPath": "/unified/hris/employees/:id",
          "input": {
            "defaultFields": [
              {
                "name": "first_name",
                "type": "string"
              }
            ]
          },
          "output": {
            "defaultFields": [
              {
                "name": "id",
                "type": "string"
              }
            ]
          }
        }
      },
      "time_off": {
        "get": {
          "apiPath": "/unified/hris/employees/:id/time_off/:id",
          "output": {
            "defaultFields": [
              {
                "name": "id",
                "type": "string"
              }
            ]
          }
        }
      }
    },
    "resources": {
      "images": {
        "logo_url": "https://app.stackone.com/assets/logos/hibob.png",
        "original_logo_horizontal_url": "https://app.stackone.com/assets/logos/original/hibob_horizontal.png"
      }
    }
  }
]

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Query Parameters

include
string | null

The comma separated list of data that will be included in the response

Example:

"field_path,unmapped_fields,resources,inactive,webhooks,static_fields"

Response

200
application/json
The list of connectors meta information was retrieved.

The response is of type object[].