RevorRevor

List Connect Accounts

GET/api/v1/connect/accounts

Returns Connect accounts available to the API key owner. Use this endpoint to obtain an account_id before creating outreach tasks.

Query Parameters

NameTypeRequiredDescription
channelstringNoFilters by channel. Supported values: email, linkedin, whatsapp.
can_sendboolean stringNoFilters by send capability. Supported values: true, false, 1, 0.

Request

cURL
curl -X GET "https://revor.ai/api/v1/connect/accounts?channel=linkedin&can_send=true" \
  -H "Authorization: Bearer sk-revor-REPLACE_ME"

Response

JSON
{
  "ok": true,
  "request_id": "req_xxx",
  "items": [
    {
      "account_id": "connect_account_xxx",
      "channel": "linkedin",
      "name": "LinkedIn Account",
      "account_identifier": "https://www.linkedin.com/in/example/",
      "status": "ok",
      "lifecycle_status": "active",
      "can_send": true,
      "can_receive": true
    }
  ]
}

Response Fields

FieldTypeDescription
account_idstringConnect account ID. Use this value as account_id in outreach endpoints.
channelstringAccount channel: email, linkedin, or whatsapp.
namestringDisplay name for the account.
account_identifierstring | nullAccount identifier, such as an email address or LinkedIn profile.
statusstringAccount status: ok, credentials, or error.
lifecycle_statusstringConnection status, such as active, connected, or reconnect_required.
can_sendbooleanWhether the account can send messages or perform actions.
can_receivebooleanWhether the account can receive messages or sync status.

Status Values

statusDescription
okThe account can be used for API operations on its channel.
credentialsThe account credentials need to be updated or reconnected.
errorThe account is not currently available.

Errors

HTTPCodeDescription
400invalid_channelThe channel value is not supported.
400invalid_can_sendThe can_send value is not supported.
401api_key_missingNo API key was provided.
401api_key_invalidThe API key is invalid.
403permission_deniedThe API key does not have access to this endpoint.
429api_rate_limit_exceededThe request was rate limited.