Skip to main content
POST
/
api
/
v2
/
activity
Log a manual activity
curl --request POST \
  --url https://api.example.com/api/v2/activity \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "attributes": {
    "metadata": {
      "activity_time": "2023-11-07T05:31:56Z",
      "subject": "<string>",
      "description": "<string>",
      "category": "OTHER"
    },
    "account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "opportunity_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "contact_ids": [
      "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    ],
    "sequence_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "pipeline_select_list_value_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  }
}
'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "attributes": {
      "type": {
        "value": "<string>",
        "value_type": "enum"
      },
      "sub_type": {
        "value": "<string>",
        "value_type": "enum"
      },
      "status": {
        "value": "<string>",
        "value_type": "enum"
      },
      "priority": {
        "value": "<string>",
        "value_type": "enum"
      },
      "display_name": {
        "value": "<string>",
        "value_type": "string"
      },
      "owner_user_id": {
        "value": {
          "related_record_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "related_record_type": "<string>"
        },
        "value_type": "record_reference"
      },
      "ended_at": {
        "value": "2023-11-07T05:31:56Z",
        "value_type": "timestamp"
      },
      "badge_status": {
        "value": "<string>",
        "value_type": "string"
      },
      "location": {
        "value": "<string>",
        "value_type": "string"
      }
    },
    "record_type": "activity",
    "metadata": {
      "title": "<string>",
      "kind": "meeting",
      "location": "<string>",
      "start_date": "2023-11-07T05:31:56Z",
      "end_date": "2023-11-07T05:31:56Z",
      "status": "<string>",
      "meeting_type": "<string>",
      "participants": [
        {
          "name": "<string>",
          "email": "<string>",
          "is_host": true,
          "rsvp_status": "<string>",
          "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "contact_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
        }
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

Reevo API key passed as Authorization: Bearer <api-key>.

Body

application/json
attributes
ActivityLogRequestAttributes · object
required

Attributes block for POST /activity.

metadata is a per-type union; the _metadata_matches_type validator enforces that the supplied metadata model matches type.

Response

Successful Response

Wrapper around a single activity record.

Used by POST /activity (create manual activity).

data
ActivityObjectRecord · object
required

Response record for a single activity.

Carries core activity data: id, type, timestamps, attributes, and the typed per-type metadata union. metadata is None for MANUAL_ACTIVITY / NOTE / EMAIL_* / SEQUENCE* rows (lean card). No relationships block (FR-035).