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>",
"type": "STRING",
"required": true,
"displayName": "<string>",
"description": "<string>"
}
]
}
}Get a destination spec by 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>",
"type": "STRING",
"required": true,
"displayName": "<string>",
"description": "<string>"
}
]
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Name
OK
Show child attributes
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
ALPHA, BETA, STABLE, DEPRECATED Show child attributes
A machine-readable name for the property
The type of the property
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