Retrieve logged-in user's stored report in a new format (outputType
) or request to send a report to a new location.
If a report is stored in the Intacct database, you can request to send it to the cloud (set outputLocation
to cloud
). You can request a report stored in intacct
in a specified format (outputType
) only if it has not been requested in that format already.
Retrieve a stored report in different format or location.
Retrieve a report in a new output type.
reportId required | string Unique identifier for the stored report. Example: "1" |
outputType required | string Format for the report output. Example: "html" |
outputLocation required | string Location where the report is stored. Example: "intacct" |
OK
Bad Request
{- "reportId": "123",
- "outputType": "pdf",
- "outputLocation": "intacct"
}
{- "ia::result": {
- "reportId": 1,
- "status": "submitted",
- "outputType": "pdf",
- "outputLocation": "intacct",
- "name": "Customer Report",
- "href": "/services/reports/status?reportId=1&outputType=pdf&outputLocation=intacct"
}, - "ia::meta": {
- "totalCount": 1,
- "totalSuccess": 1,
- "totalError": 0
}
}