cURL
curl --request POST \ --url https://api.portable.io/v2/destinations \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "destinationSpec": "<string>", "displayName": "<string>", "properties": {} } '
{ "data": { "id": 123, "destinationSpec": { "name": "<string>", "displayName": "<string>", "website": "<string>", "tagLine": "<string>", "lifecycle": "ALPHA", "instructions": "<string>", "propertyDefinitions": [ { "name": "<string>", "type": "STRING", "required": true, "displayName": "<string>", "description": "<string>" } ] }, "displayName": "<string>", "properties": {}, "createdAt": "2023-11-07T05:31:56Z", "updatedAt": "2023-11-07T05:31:56Z" } }
Create a new destination
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Destination to create
The name of the destination spec to create a destination for
A human-readable name for the destination
Show child attributes
Created