Skip to main content
POST
/
reports
/
simplified
/
assignments
Simplified current-state assignment list
curl --request POST \
  --url https://reports-latest.continu.co/api/v1/reports/simplified/assignments \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "assignee": true,
  "assigner": true,
  "manual_completed_by": true,
  "sort_by": "updated_date"
}
'
[
  {}
]

Documentation Index

Fetch the complete documentation index at: https://reporting.continu.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API token issued by Continu.

Headers

Authorization
string
required

API token issued by Continu. Send the raw token value (confirm with your Continu contact whether your deployment expects 'Bearer ' or the raw token).

Body

application/json

Field-selection and filter document.

Request body for the SimplifiedAssignment endpoint. Set field flags to true to include them in the response; provide filter objects to narrow results.

assignee
boolean

Set to true to include assignee in the response.

Example:

true

assigner
boolean

Set to true to include assigner in the response.

Example:

true

manual_completed_by
boolean

Set to true to include manual_completed_by in the response.

Example:

true

sort_by
string

Which field to sort the response by (e.g., updated_date).

Example:

"updated_date"

Response

Success. Returns an array of records.