GET
/
unified
/
crm
/
opportunity
curl --request GET \
  --url https://api.openint.dev/v0/unified/crm/opportunity \
  --header 'x-apikey: <api-key>' \
  --header 'x-connection-id: <api-key>'
{
  "next_cursor": "<string>",
  "has_next_page": true,
  "items": [
    {
      "id": "<string>",
      "updated_at": "<string>",
      "raw_data": {},
      "name": "<string>",
      "description": "<string>",
      "owner_id": "<string>",
      "status": "OPEN",
      "stage": "<string>",
      "close_date": "<string>",
      "account_id": "<string>",
      "pipeline": "<string>",
      "amount": 123,
      "last_activity_at": "<string>",
      "created_at": "<string>",
      "is_deleted": true,
      "last_modified_at": "<string>"
    }
  ]
}

Authorizations

x-apikey
string
header
required
x-connection-id
string
header
required

Query Parameters

sync_mode
enum<string>
Available options:
full,
incremental
cursor
string | null
page_size
number

Response

200
application/json
Successful response
has_next_page
boolean
required
items
object[]
required
next_cursor
string | null