Skip to main content
mutation ExportUnderwritingData {
  exportUnderwritingData {
    downloadUrl
    errors {
      message
    }
  }
}
{
  "data": {
    "exportUnderwritingData": {
      "downloadUrl": "example",
      "errors": [
        {
          "message": "example"
        }
      ]
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.tesouro.com/llms.txt

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

Mutation

Arguments

No arguments.

Return type

ExportUnderwritingDataPayload!
downloadUrl
String
Temporary URL to download the exported ZIP file, valid for 1 hour
errors
[Error!]
Errors that occurred during the mutation, if any. Null or empty indicates success.
mutation ExportUnderwritingData {
  exportUnderwritingData {
    downloadUrl
    errors {
      message
    }
  }
}
{
  "data": {
    "exportUnderwritingData": {
      "downloadUrl": "example",
      "errors": [
        {
          "message": "example"
        }
      ]
    }
  }
}