GET api/SystemData/GetMaterial/{id}
Gets the material.
Access
Requires authentication.
Requires SSL.
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
id | The id. |
Define this parameter in the request URI. |
Response Information
Response body formats
application/xml, text/xml
Sample:
<ApiResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <ResponseCode>1</ResponseCode> <ResponseDescription>sample string 2</ResponseDescription> <MethodExpirationDate>2025-04-29T15:10:42.3843527+02:00</MethodExpirationDate> <ResponseObject> <MaterialId>1</MaterialId> <Name>sample string 1</Name> <ExportCode>sample string 2</ExportCode> <IsStainless>true</IsStainless> <IsWarm>true</IsWarm> <ImportSynonyms>sample string 5</ImportSynonyms> <SortIndex>6</SortIndex> <AllowCutAndBend>true</AllowCutAndBend> <AllowMesh>true</AllowMesh> <AllowArticle>true</AllowArticle> <AllowCarpet>true</AllowCarpet> <WeightPerMeter>11</WeightPerMeter> <Diameter>12</Diameter> <EndHookRadius>13</EndHookRadius> <MinRadiusRebar>14</MinRadiusRebar> <MinRadiusBelow90>15</MinRadiusBelow90> <MinRadiusAbove90>16</MinRadiusAbove90> <DefaultBendRadius>1</DefaultBendRadius> </ResponseObject> </ApiResponse>
application/json, text/json
Sample:
{ "ResponseCode": 1, "ResponseDescription": "sample string 2", "MethodExpirationDate": "2025-04-29T15:10:42.3843527+02:00", "ResponseObject": { "MaterialId": 1, "Name": "sample string 1", "ExportCode": "sample string 2", "IsStainless": true, "IsWarm": true, "ImportSynonyms": "sample string 5", "SortIndex": 6, "AllowCutAndBend": true, "AllowMesh": true, "AllowArticle": true, "AllowCarpet": true, "WeightPerMeter": 11.0, "Diameter": 12.0, "EndHookRadius": 13.0, "MinRadiusRebar": 14.0, "MinRadiusBelow90": 15.0, "MinRadiusAbove90": 16.0, "DefaultBendRadius": 1.0 } }