Important!
The 3D print API is shutting down on January 15, 2017. See our end of life notice for more information.
GET materials/:id¶a>
Retrieves details of a specific material.
Materials provide a variety of information about the substances used in 3D printing, including associated printing technology, color, extrusion details, and associated printer types.
Resource Information¶
Method and URI | GET https:/ |
Authentication Context | none |
Data Format | JSON |
Request¶
URI Parameters¶
Name |
Required |
Value Type |
Description |
---|---|---|---|
id | yes | string: UUID | material identifier |
Response¶
HTTP Status Code Summary¶
Code |
Message |
Meaning |
---|---|---|
200 | OK | Successful |
400 | Bad Request | Invalid request. E.g., the request could not be parsed. |
401 | Unauthorized | Invalid authorization header. E.g., user is not logged in, or cannot access resource. |
404 | Not Found | Endpoint does not exist. |
422 | Unprocessable Entity | Semantic errors |
429 | Precondition Required | Request rate limit exceeded |
500 | Internal Server Error | An unknown error occurred on the server. |
Body Structure (200)¶
A successful response returns the requested material object.
For details about material objects, see the Field Guide section.
Examples¶
Successful Retreival of Specific Material (200)¶
curl -X 'GET' -v 'https://developer.api.autodesk.com/ps/v1/printdb/materials/426F14FE-E6AF-496F-BBC7-7D6C0E16861D'
{
"id": "426F14FE-E6AF-496F-BBC7-7D6C0E16861D",
"version": 1,
"name": "PHOTORESIN BLACK",
"technology": "PHOTORESIN",
"printer_types": [
"7FAF097F-DB2E-45DC-9395-A30210E789AA"
],
"cost": 100,
"exposure_power": 1,
"cure_time_adhesion": 1,
"cure_time_intermediary": 1,
"cure_time_nominal_layers": 1,
"color": "0b0b0a",
"protein_ref": 1234,
"manufacturer": "Autodesk",
"composition": "urethane"
}