Destination Specs
Get destination spec
Destination Specs
Get destination spec
Get a destination spec by name
GET
/
v2
/
destinationspecs
/
{name}
curl --request GET \
--url https://api.portable.io/v2/destinationspecs/{name} \
--header 'Authorization: Bearer <token>'
{
"data": {
"name": "<string>",
"displayName": "<string>",
"website": "<string>",
"tagLine": "<string>",
"lifecycle": "ALPHA",
"instructions": "<string>",
"propertyDefinitions": [
{
"name": "<string>",
"displayName": "<string>",
"type": "STRING",
"required": true,
"description": "<string>"
}
]
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Name
Response
200
application/json
OK
The name of the destination spec
A human-readable name for the destination spec
The website of the destination spec
A one line description of the destination spec
Available options:
ALPHA
, BETA
, STABLE
, DEPRECATED
A machine-readable name for the property
The type of the property
Available options:
STRING
, PASSWORD
, TEXT
, NUMBER
, BOOLEAN
, DATE
, DATETIME
, TIME
Whether the property's value is required
A human-readable name for the property
A human-readable description of the property
curl --request GET \
--url https://api.portable.io/v2/destinationspecs/{name} \
--header 'Authorization: Bearer <token>'
{
"data": {
"name": "<string>",
"displayName": "<string>",
"website": "<string>",
"tagLine": "<string>",
"lifecycle": "ALPHA",
"instructions": "<string>",
"propertyDefinitions": [
{
"name": "<string>",
"displayName": "<string>",
"type": "STRING",
"required": true,
"description": "<string>"
}
]
}
}