Web Service Documentation / Categories / Reporting Services / Submit Data Response
Updated on October 10, 2023
23.0
POST
/reports/customers/(customerId)/dataResponses/(dataResponseId)/send
Field Name | Value | Comments |
---|---|---|
Authorization | Basic credentials |
Yes
Parameter Name | Description |
---|---|
customerId | Id of the customer |
dataResponseId | Id of the data response |
Request/Response | Schema Name |
---|---|
Request | sendDataResponse.xsd |
Response | response.xsd |
The following example submits the data response preview for a specific data response that has an id of 9876 that belongs to a customer with an id of 675434.
POST /reports/customers/675434/dataResponse/9876/send<?xml version="1.0" encoding="UTF-8"?> <sendDataResponse> <additionalEmailAddresses> <email>john.doe@acme.com</email> <email>jane.doe@acme.com</email> </additionalEmailAddresses> <fileFormat>EXCEL</fileFormat> <submitWithErrors>true</submitWithErrors> </sendDataResponse>
The following example shows the results when you call this web service.
<?xml version="1.0" encoding="UTF-8"?>
<response status="Ok"/>