Important!
The 3D print API is shutting down on January 15, 2017. See our end of life notice for more information.
GET profiles/:id¶a>
Retrieves details of the slicing parameters associated with a specific printer type.
To update a profile, create a new one with an incremented version number.
Resource Information¶
Method and URI | GET https:/ |
Authentication Context | none |
Data Format | JSON |
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 profile object.
For details about profile objects, see the Field Guide section.
Examples¶
Successful Retreival of Specific Profile (200)¶
curl -X 'GET' -v 'https://developer.api.autodesk.com/ps/v1/printdb/profiles/0EE76E3C-41FB-ACA7-362A-F1A2818BC3F2'
{
"name": "10 micron",
"id": "0EE76E3C-41FB-ACA7-362A-F1A2818BC3F2",
"printer_types": [
"7FAF097F-DB2E-45DC-9395-A30210E789AA"
],
"materials": [
"14A17377-30B2-41D8-973B-7CEDACDC7F80"
],
"antialias_image_boundary": true,
"brightness_blur_radius": 12,
"brightness_input_max": 0.25,
"brightness_input_min": 0.01,
"brightness_output_max": 0.7,
"brightness_output_min": 1,
"burn-in_layer_angle_of_rotation": 1.0471975512,
"burn-in_layer_approach_slide_maximum_jerk": 80.8022801849,
"burn-in_layer_approach_slide_velocity": 4,
"burn-in_layer_approach_z-axis_maximum_jerk": 0.0462962962963,
"burn-in_layer_approach_z-axis_velocity": 0.05,
"burn-in_layer_burn_in_layers": 4,
"burn-in_layer_exposure_time": 4,
"burn-in_layer_overpress": 0,
"burn-in_layer_overpress_return_velocity": 0.15,
"burn-in_layer_overpress_velocity": 0.15,
"burn-in_layer_separation_slide_maximum_jerk": 80.8022801849,
"burn-in_layer_separation_slide_velocity": 4,
"burn-in_layer_separation_z-axis_maximum_jerk": 0.0462962962963,
"burn-in_layer_separation_z-axis_velocity": 0.2,
"burn-in_layer_wait_after_overpress": 0,
"burn-in_layer_wait_before_exposure": 5,
"burn-in_layer_z-axis_overlift": 0.1,
"first_layer_angle_of_rotation": 1.0471975512,
"first_layer_approach_slide_maximum_jerk": 80.8022801849,
"first_layer_approach_slide_velocity": 4,
"first_layer_approach_z-axis_maximum_jerk": 0.0462962962963,
"first_layer_approach_z-axis_velocity": 0.05,
"first_layer_exposure_time": 8,
"first_layer_overpress": 0,
"first_layer_overpress_return_velocity": 0.15,
"first_layer_overpress_velocity": 0.15,
"first_layer_separation_slide_maximum_jerk": 80.8022801849,
"first_layer_separation_slide_velocity": 4,
"first_layer_separation_z-axis_maximum_jerk": 0.0462962962963,
"first_layer_separation_z-axis_velocity": 0.2,
"first_layer_wait_after_overpress": 0,
"first_layer_wait_before_exposure": 5,
"first_layer_z-axis_overlift": 0.1,
"layer_height": 0.001,
"layer_height_first": 0.2,
"model_layer_angle_of_rotation": 1.0471975512,
"model_layer_approach_slide_maximum_jerk": 80.8022801849,
"model_layer_approach_slide_velocity": 12,
"model_layer_approach_z-axis_maximum_jerk": 0.0462962962963,
"model_layer_approach_z-axis_velocity": 0.1,
"model_layer_exposure_time": 1.2,
"model_layer_overpress": 0,
"model_layer_overpress_return_velocity": 0.15,
"model_layer_overpress_velocity": 0.15,
"model_layer_separation_slide_maximum_jerk": 80.8022801849,
"model_layer_separation_slide_velocity": 8,
"model_layer_separation_z-axis_maximum_jerk": 0.0462962962963,
"model_layer_separation_z-axis_velocity": 0.2,
"model_layer_wait_after_overpress": 0,
"model_layer_wait_before_exposure": 1.5,
"model_layer_z-axis_overlift": 0.1,
"support_angle_tol": 1.3963,
"support_base_length": 0.25,
"support_base_radius": 0.25,
"support_bed_standoff": 0.3,
"support_clearance": 0.01,
"support_contact_tol": 0,
"support_horizontal_connection_size": 0,
"support_layer_height": 0.0025,
"support_max_angle": 0.7854,
"support_object_top_connections": 1,
"support_post_radius": 0.05,
"support_sampling_density": 0.8,
"support_tip_length": 0.2,
"support_tip_penetration_distance": -0.0025,
"support_tip_radius": 0.0125,
"support_trunk_radius": 0.2,
"technology": "DLP",
"use_rotation_homing_for_approach": false,
"variable_strength_exposure": false,
"version": 1
}