Social Accounts
Disconnect
Remove a connected social account from your project.
Endpoint
DELETE https://api.postpeer.dev/v1/connect/integrations/{id}Path Parameters
| Parameter | Type | Description |
|---|---|---|
id | string | Integration ID from the List endpoint |
Example
curl -X DELETE "https://api.postpeer.dev/v1/connect/integrations/abc123" \
-H "x-access-key: YOUR_API_KEY"Response
{
"success": true,
"message": "twitter disconnected."
}Status Codes
| Code | Meaning |
|---|---|
200 | Account disconnected |
404 | Integration not found |