Create Timeline Marker
POST /v2/partner/timeline-markers
Required scopes
partner:timeline_markers:write
Tokens missing any required scope return 401 scope_missing.
See Auth & Scopes for issuance.
Operation
| Operation ID | createTimelineMarker |
| Tags | Operations |
Request body
Required
object
| Field | Type | Description |
|---|---|---|
| id * | id | UUID v4. |
| type * | enum (1) | timeline_marker |
| team_id * | id | UUID v4. |
| template_id | string (uuid) | |
| name * | string | |
| occurred_at * | updated_at | RFC 3339 / ISO 8601 timestamp. |
| color | string | |
| notes | string | |
| inserted_at * | updated_at | RFC 3339 / ISO 8601 timestamp. |
Responses
201
Created
object
| Field | Type | Description |
|---|---|---|
| id * | id | UUID v4. |
| type * | enum (1) | timeline_marker |
| team_id * | id | UUID v4. |
| template_id | string (uuid) | |
| name * | string | |
| occurred_at * | updated_at | RFC 3339 / ISO 8601 timestamp. |
| color | string | |
| notes | string | |
| inserted_at * | updated_at | RFC 3339 / ISO 8601 timestamp. |
Example request
POST https://api.digitalonboarding.com/v2/partner/timeline-markers
Authorization: Bearer <partner-token>
Content-Type: application/json
Idempotency-Key: <uuid-v4>
{ /* request body matching schema above */ }