mutation ExportUnderwritingData {
exportUnderwritingData {
downloadUrl
errors {
message
}
}
}
curl --request POST \
--url https://api.sandbox.com/graphql \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <YOUR_ACCESS_TOKEN>' \
--data '{
"query": "mutation ExportUnderwritingData {\n exportUnderwritingData {\n downloadUrl\n errors {\n message\n }\n }\n}"
}'
{
"data": {
"exportUnderwritingData": {
"downloadUrl": "example",
"errors": [
{
"message": "example"
}
]
}
}
}
Mutations
exportUnderwritingData
Export all underwriting data as a ZIP file containing CSV files for applications, application events, and information requests. Returns a temporary download URL valid for 1 hour.
mutation ExportUnderwritingData {
exportUnderwritingData {
downloadUrl
errors {
message
}
}
}
curl --request POST \
--url https://api.sandbox.com/graphql \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <YOUR_ACCESS_TOKEN>' \
--data '{
"query": "mutation ExportUnderwritingData {\n exportUnderwritingData {\n downloadUrl\n errors {\n message\n }\n }\n}"
}'
{
"data": {
"exportUnderwritingData": {
"downloadUrl": "example",
"errors": [
{
"message": "example"
}
]
}
}
}
Mutation
Arguments
No arguments.Return type
ExportUnderwritingDataPayload!
String
Temporary URL to download the exported ZIP file, valid for 1 hour
[Error!]
Errors that occurred during the mutation, if any. Null or empty indicates success.
Show child attributes
Show child attributes
String!
required
A message describing the error.
mutation ExportUnderwritingData {
exportUnderwritingData {
downloadUrl
errors {
message
}
}
}
curl --request POST \
--url https://api.sandbox.com/graphql \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <YOUR_ACCESS_TOKEN>' \
--data '{
"query": "mutation ExportUnderwritingData {\n exportUnderwritingData {\n downloadUrl\n errors {\n message\n }\n }\n}"
}'
{
"data": {
"exportUnderwritingData": {
"downloadUrl": "example",
"errors": [
{
"message": "example"
}
]
}
}
}
Was this page helpful?