Merge · Schema

ActivityRequest

# The Activity Object ### Description The `Activity` object is used to represent an activity for a candidate performed by a user. ### Usage Example Fetch from the `LIST Activities` endpoint and filter by `ID` to show all activities.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
user stringnull The user that performed the action.
activity_type object The activity's type.
subject stringnull The activity's subject.
body stringnull The activity's body.
visibility object The activity's visibility.
candidate stringnull
integration_params objectnull
linked_account_params objectnull
View JSON Schema on GitHub

JSON Schema

merge-activityrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ActivityRequest",
  "title": "ActivityRequest",
  "type": "object",
  "properties": {
    "user": {
      "type": [
        "string",
        "null"
      ],
      "format": "uuid",
      "description": "The user that performed the action."
    },
    "activity_type": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/ActivityTypeEnum"
        },
        {
          "type": "null"
        }
      ],
      "description": "The activity's type."
    },
    "subject": {
      "type": [
        "string",
        "null"
      ],
      "description": "The activity's subject."
    },
    "body": {
      "type": [
        "string",
        "null"
      ],
      "description": "The activity's body."
    },
    "visibility": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/VisibilityEnum"
        },
        {
          "type": "null"
        }
      ],
      "description": "The activity's visibility."
    },
    "candidate": {
      "type": [
        "string",
        "null"
      ],
      "format": "uuid"
    },
    "integration_params": {
      "type": [
        "object",
        "null"
      ],
      "additionalProperties": {
        "description": "Any type"
      }
    },
    "linked_account_params": {
      "type": [
        "object",
        "null"
      ],
      "additionalProperties": {
        "description": "Any type"
      }
    }
  },
  "description": "# The Activity Object\n### Description\nThe `Activity` object is used to represent an activity for a candidate performed by a user.\n### Usage Example\nFetch from the `LIST Activities` endpoint and filter by `ID` to show all activities."
}