Skip to content

Export Email Data

GET
/api/data/export
curl --request GET \
--url 'http://localhost:8000/api/data/export?sort_by=id&order=desc' \
--header 'Authorization: Bearer <token>'
q
Any of:
string
source_link_id
Any of:
integer
sort_by
Any of:
string
order
Any of:
string
start_date
Any of:
string
end_date
Any of:
string
is_used
Any of:
boolean

Successful Response

Media typeapplication/json
Examplegenerated
example

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
ctx
Context
object
input
Input
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"ctx": {},
"input": "example",
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}