curl --request POST \
--url https://dev.flextell.ai/api/v1/conversations/{id}/export \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"format": "json",
"message_count": 5000,
"export_all": true,
"include_context": true
}
'{}The access token received from the authorization server in the OAuth 2.0 flow.
Tenant identifier. Send the Tenant ID in the X-Tenant header to scope API requests to a specific tenant.
The conversation identifier
The response is of type object.
curl --request POST \
--url https://dev.flextell.ai/api/v1/conversations/{id}/export \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"format": "json",
"message_count": 5000,
"export_all": true,
"include_context": true
}
'{}