Get Outputs Request
GET
outputs-request/{outputsRequestId}
Returns the details of an Outputs Request. The Outputs Request is specified by the client provided outputsRequestId
URI parameter.
Resource Information
Method and URI | GET https://developer.api.autodesk.com/industrialized-construction/informed-design/v1/outputs-request/{outputsRequestId} |
Authentication Context | user context required |
Required OAuth Scopes | data:read data:write data:create account:read |
Data Format | JSON |
Request
Headers
Authorization* string | Must be Bearer <token> , where <token> is obtained via a three-legged OAuth flow. |
* Required
Request
URI Parameters
outputsRequestId string: UUID | The unique identifier of OutputsRequest. |
Request
Query String Parameters
accessType* enum:string | The type of integration or service used to determine access context.
Possible values: ACC , BIM360 , FUSION , CONTENTCATALOG , BRIDGE , PUBLIC |
accessId* string | A composite string of identifiers that define the access scope for the given access type. |
* Required
Response
HTTP Status Code Summary
200 OK | The Outputs Request was retrieved successfully. |
400 Bad Request | The server could not process your request. It is likely due to incorrect formatting or missing information. The response body may indicate what is wrong. Please review and resubmit your request. |
401 Unauthorized | The supplied authorization header was invalid or the token scope was not acceptable. Verify your authentication credentials and try again. |
403 Forbidden | The request was valid but lacked the necessary permissions. Verify your credentials and permissions before sending the request again. |
404 Not Found | The requested resource could not be found on the server. Review the request and try again. |
429 Too Many Requests | The server has received too many requests within the allowed time window. Please wait before retrying. |
500 Internal Server Error | An unexpected error occurred on the server. Please try again later. |
Response
Body Structure (200)
Expand all
accessType enum:string | The type of integration or service used to determine access context.
Possible values: ACC , BIM360 , FUSION , CONTENTCATALOG , BRIDGE , PUBLIC |
accessId string | A composite string of identifiers that define the access scope for the given access type. |
id string: UUID | The unique identifier of the Outputs Request. |
outputs array: object | The array of outputs. |
id string | The unique identifier of Output. |
status string | The status of output. |
onComplete object | The onComplete URL and VERB. |
verb enum:string | The HTTP verb to use for the callback.
Possible values: POST , PUT , PATCH , GET |
url string | The URL to send the callback to. |
onProgress object | The onProgress URL and VERB. |
verb enum:string | The HTTP verb to use for the callback.
Possible values: POST , PUT , PATCH , GET |
url string | The URL to send the callback to. |
logFile string | The URL to the log file. |
status enum:string | The status of the Outputs Request.
Possible values: PENDING , SUCCESS , FAILED |
createdAt datetime: ISO 8601 | The timestamp(ISO 8601) when the resource was created. |
updatedAt datetime: ISO 8601 | The timestamp(ISO 8601) when the resource was last updated. |
Example
The Outputs Request was retrieved successfully.
Request
curl -v 'https://developer.api.autodesk.com/industrialized-construction/informed-design/v1/outputs-request/12345678-1234-1234-1234-1234567890ab?accessType=ACC&accessId=12345678-1234-1234-1234-1234567890ab|urn:adsk.wipstg:fs.folder:co.ObAD7BpLXdKZiXK_OSJBow' \
-H 'Authorization: Bearer AuIPTf4KYLTYGVnOHQ0cuolwCW2a'
Response
{
"accessType": "ACC",
"accessId": "",
"id": "",
"outputs": [
{
"id": "",
"status": ""
}
],
"onComplete": {
"verb": "POST",
"url": ""
},
"onProgress": {
"verb": "POST",
"url": ""
},
"logFile": "",
"status": "PENDING",
"createdAt": "",
"updatedAt": ""
}
Show More