Description
Provides a facility to create or overwrite a layout for liners in the Complex module, by uploading a DXF file.
The API can be called with just the mandatory parameters to create a layout with default settings. The optional fields can be used to specify the default liner settings, meaning all liners in the layout will have the same attributes (thickness, dimensions, part number, etc). The attributes for the individual liners can then be edited in the PDS software at a later stage.
The Area that the DXF is being imported to will have to be already created in the software before the import is attempted. To update an existing layout, use the DXF File for Liners API to retrieve the current layout DXF file.
URL
https://apiprod.pdsglobal.com/V2/api/common/equipmentlinertype/dxf/V1
Note: There are two non-production environments that can be used for testing.
Request
Type
POST
Headers
Content-Type = Multipart/Form-data
Parameters
Mandatory parameters are denoted by *
*
api_key: string(50) This is required for authentication. It is used to identify the user and determine access to the system. If you do not have your API key please contact PDS Support (support@pdsglobal.com).
businessName: string(50) The name of the business as recorded in the hierarchy. Can be obtained from the hierarchy or the Area Details API.
groupName: string(50) The name of the group as recorded in the hierarchy. Can be obtained from the hierarchy or the Area Details API.
departmentName: string(50) The name of the department as recorded in the hierarchy. Can be obtained from the hierarchy or the Area Details API.
areaName: string(50) The name of the area as recorded in the hierarchy. Can be obtained from the hierarchy or the Area Details API.
equipmentTypeName: string(50) The type of equipment as specified in the Equipment Type dialog.
Body
Object: liner |
|
materialTypeName* - string(50) |
|
thickness* – int |
|
width – int |
|
height – int |
|
backingMaterialName – string(50) |
|
backingThickness– int |
|
fixingTypeName - string(50) |
|
fixingName - string(50) |
|
manufacturerName - string(50) |
|
wearPackName - string(50) |
|
partNumber - string(50) |
|
documentLink - string(50) |
|
markingPlan - string(50) Allows a reference (number or other reference) to added for a marking plan relevant to the chute depicted in the DXF. Free text. |
|
detailDrawing - string(50) Allows a reference (number or other reference) to added for a detailed technical drawing relevant to the chute depicted in the DXF. Free text. |
|
installationDate - dateTime The time the panel was installed. If not populated, this will default to the date and time the record was sent to PDS. |
|
installationWorkOrder - string(50) |
|
comments - string(500) Free text limited to 500 characters. Any comments can be added as required. |
|
overwriteLayout - Boolean Determines whether the existing layout gets replaced or updated by the new layout. When there is an existing layout: TRUE - all existing records for that area be will deleted and a new layout created. FALSE - the existing layout will be edited. Existing records will remain unless the entity is removed from the layout. |
|
leadTime |
|
replacementInterval |
|
removalWorkOrder |
|
Object: dxf_file: |
|
This is the file containing the layout to be imported. File should be a dxf format and Entities (liners/ screenpanels) should be created as Polyline or LWPolyline. Text can be added as a non clickable entity. Polyline and LWPolyline entities can be added as non-clickable (so they can be used for flow direction, arrow pointers, etc) by adding a custom property "non-clickable". When downloading the DXF from PDS (previously uploaded), the DXF file will contain a PDS number for each entity. The value should be unique when editing it or adding new entities. A duplicate number will cause the upload to fail. |
Response
Body
Object: ResponseEntity<string>[] |
|
businessName: string(50) The name of the business as recorded in the hierarchy. Can be obtained from the hierarchy or the Area Details API. |
|
businessFunctionalLocation: string(50) Unique code used to identify the business. Can be obtained from the business edit dialog in the software, or the Area Details API. |
Response Status Code
See HTTP Response Codes and Errors
Examples
URL:
https://apiprod.pdsglobal.com/V2/api/common/equipmentlinertype/dxf/V1?api_key=ABC123
Request Body:
Form-Data Request Body:
liner:
{
"materialTypeName":"Ceramic",
"thickness" :50,
"width":300,
"height":300,
"backingMaterialName":"Rubber",
"backingThicknesss":12,
"fixingTypeName":"Bolt",
"fixingName":"M20",
"partNumber ":"110451",
"manufacturerName":"Imatech",
"wearPackName":"Wear Pack D",
"documentLink ":"https://support.pdsglobal.com",
"markingPlan":"000-L-102433",
"detailDrawing":"000-D-26754",
“overwriteLayout” : false,
"comments":"Default liner for all chutes."
}
dxf_file: [dxf file]