works

Export Post

POST
Exports a collection of work items.

Request

This endpoint expects an object.
actual_close_date
unionOptional
Provides ways to specify date ranges on objects.
applies_to_part
list of stringsOptional
Filters for work belonging to any of the provided parts.
created_by
list of stringsOptional
Filters for work created by any of these users.
created_date
unionOptional
Provides ways to specify date ranges on objects.
first
integerOptional
The number of work items to return. The default is '50', the maximum is '5000'.
issue
objectOptional
modified_date
unionOptional
Provides ways to specify date ranges on objects.
owned_by
list of stringsOptional
Filters for work owned by any of these users.
reported_by
list of stringsOptional
Filters for work reported by any of these users.
stage
objectOptional
The filter for stages.
staged_info
objectOptional
sync_metadata
objectOptional
tags
list of stringsOptional
Filters for work with any of the provided tags.
target_close_date
unionOptional
Provides ways to specify date ranges on objects.
ticket
objectOptional
type
list of enumsOptional
Filters for work of the provided types.
Allowed values: issueticket

Response

This endpoint returns an object
works
list of unions
The resulting collection of work items.
POST
1curl -X POST https://api.devrev.ai/works.export \
2 -H "Authorization: <apiKey>" \
3 -H "Content-Type: application/json" \
4 -d '{}'
Response
1{
2 "works": []
3}