Associate an external app account with the account of the currently authenticated Dash user
Security
bearerToken
A unique identifier of the specific account to connect to in the external app
Example:"put the Shopify domain here"
- Productionhttps://api-v2.dash.app/external-app-accounts
- Staginghttps://api-v2.dashstaging.app/external-app-accounts
curl -i -X POST \
https://api-v2.dash.app/external-app-accounts \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"externalAppAccountId": "put the Shopify domain here",
"appName": "SHOPIFY",
"connectionPayload": "{\n \"type\": \"SHOPIFY\",\n \"clientId\": \"put the Client ID here\",\n \"clientSecret\": \"put the Client secret here\",\n \"accessToken\": \"\"\n}\n"
}'