Skip to main content
PUT
/
connect
/
v1
/
connector-providers
/
{providerKey}
/
manifest
Register a connector provider manifest
curl --request PUT \
  --url https://api.voyant.travel/connect/v1/connector-providers/{providerKey}/manifest \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{}'
{
  "key": "tui",
  "name": "TUI",
  "capabilities": [
    "accommodations",
    "packages"
  ],
  "description": "<string>",
  "applicationFormSchema": {}
}

Authorizations

Authorization
string
header
required

Provide either a static platform API key or an OAuth2 access token (from /connect/v1/oauth/token) as Authorization: Bearer <token>. Scopes are connect:* (e.g. connect:bookings:write).

Path Parameters

providerKey
string
required

Connector provider key.

Body

application/json

The body is of type object.

Response

200 - application/json

Manifest registered.

key
string
required
Example:

"tui"

name
string
required
Example:

"TUI"

capabilities
string[]
required
Example:
["accommodations", "packages"]
description
string | null
applicationFormSchema
object