Disconnect a social network

Permanently delete a social network from your organization. This action cannot be undone.

Impact:

  • The social network will be immediately removed from your account
  • Any social accounts connected using this social network may lose functionality
  • You will no longer be able to connect new accounts for this platform
  • Existing posts will not be affected, but future posts to this platform will fail

Use Cases:

  • Removing support for a platform you no longer use
  • Cleaning up test or invalid social networks
  • Security response to compromised credentials

Best Practice: Before deleting a social network, ensure you have a replacement ready or that you no longer need to connect accounts for this platform.

Authorization: Only social networks belonging to your organization can be deleted. Attempts to delete social networks from other organizations will return a 403 Forbidden error.

DELETE/v1/social-networks/{id}

Path Parameters

idstring

Response Body

curl -X DELETE "https://api.outstand.so/v1/social-networks/string"
{
  "success": true,
  "message": "Social network deleted successfully"
}
{
  "success": false,
  "error": "Invalid payload",
  "details": {
    "network": {
      "_errors": [
        "Required"
      ]
    }
  }
}
{
  "success": false,
  "error": "Invalid payload",
  "details": {
    "network": {
      "_errors": [
        "Required"
      ]
    }
  }
}
{
  "success": false,
  "error": "Internal server error",
  "message": "Database connection failed"
}