uploadThirdPartyFileBase64
Examples
mutation UploadThirdPartyFileBase64($data: String!, $tool: String!, $fileType: ThirdPartyUploadDataType) {
uploadThirdPartyFileBase64(data: $data, tool: $tool, fileType: $fileType) {
requestId
success
}
}{
"data": "example",
"tool": "example",
"fileType": "JSON"
}curl -X POST \
https://api.cloud.ox.security/api/apollo-gateway \
-H 'Content-Type: application/json' \
-H 'Authorization: YOUR_API_TOKEN' \
-d '{
"query": "mutation UploadThirdPartyFileBase64($data: String!, $tool: String!, $fileType: ThirdPartyUploadDataType) { uploadThirdPartyFileBase64(data: $data, tool: $tool, fileType: $fileType) { requestId success } }",
"variables": {
"data": "example",
"tool": "example",
"fileType": "JSON"
}
}'Arguments
Argument
Description
Supported fields
Fields
Field
Description
Supported fields
Last updated
