Skip to main content
GET
/
connectors
/
{connectorId}
/
credentials
/
metadata
Get Connector Credentials Metadata
curl --request GET \
  --url https://production.runalloy.com/connectors/{connectorId}/credentials/metadata \
  --header 'Authorization: Bearer <token>' \
  --header 'x-api-version: <x-api-version>'
{
  "metadata": [
    {
      "authenticationType": "oauth2",
      "inputSchema": {
        "type": "object",
        "properties": {
          "userId": {
            "type": "string"
          },
          "redirectUri": {
            "type": "string"
          },
          "data": {
            "type": "object",
            "properties": {
              "subdomain": {
                "type": "string"
              }
            },
            "required": [
              "subdomain"
            ]
          }
        },
        "required": [
          "userId",
          "redirectUri"
        ]
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-api-version
string
default:2025-09
required

API version

x-alloy-userid
string

The ID of the user making the request; If not provided, the request will be made as the API Key user

Path Parameters

connectorId
string
required

Connector ID

Response

200 - application/json

List of credentials metadata

metadata
object[]
I