Destinations
Get destination
Get a destination by ID
GET
/
v2
/
destinations
/
{id}
curl --request GET \
--url https://api.portable.io/v2/destinations/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": 123,
"displayName": "<string>",
"destinationSpec": {
"name": "<string>",
"displayName": "<string>",
"website": "<string>",
"tagLine": "<string>",
"lifecycle": "ALPHA",
"instructions": "<string>",
"propertyDefinitions": [
{
"name": "<string>",
"displayName": "<string>",
"type": "STRING",
"required": true,
"description": "<string>"
}
]
},
"properties": {},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
ID
Examples:
568971
Response
200
application/json
OK
The response is of type object
.
curl --request GET \
--url https://api.portable.io/v2/destinations/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": 123,
"displayName": "<string>",
"destinationSpec": {
"name": "<string>",
"displayName": "<string>",
"website": "<string>",
"tagLine": "<string>",
"lifecycle": "ALPHA",
"instructions": "<string>",
"propertyDefinitions": [
{
"name": "<string>",
"displayName": "<string>",
"type": "STRING",
"required": true,
"description": "<string>"
}
]
},
"properties": {},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
}
Assistant
Responses are generated using AI and may contain mistakes.