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

Authorization
string
headerrequired

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

Path Parameters

name
string
required

Name

Response

200 - application/json
data
object
required