GET api/SystemData/GetSurfaceTreatments

Gets the surface treatments.

Access

Requires authentication.

Requires SSL.

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>2024-05-21T04:12:43.2221572+02:00</MethodExpirationDate>
  <ResponseObject>
    <SurfaceTreatmentOut>
      <ExternalCode>sample string 2</ExternalCode>
      <Name>sample string 1</Name>
    </SurfaceTreatmentOut>
    <SurfaceTreatmentOut>
      <ExternalCode>sample string 2</ExternalCode>
      <Name>sample string 1</Name>
    </SurfaceTreatmentOut>
    <SurfaceTreatmentOut>
      <ExternalCode>sample string 2</ExternalCode>
      <Name>sample string 1</Name>
    </SurfaceTreatmentOut>
  </ResponseObject>
</ApiResponse>

application/json, text/json

Sample:
{
  "ResponseCode": 1,
  "ResponseDescription": "sample string 2",
  "MethodExpirationDate": "2024-05-21T04:12:43.2221572+02:00",
  "ResponseObject": [
    {
      "Name": "sample string 1",
      "ExternalCode": "sample string 2"
    },
    {
      "Name": "sample string 1",
      "ExternalCode": "sample string 2"
    },
    {
      "Name": "sample string 1",
      "ExternalCode": "sample string 2"
    }
  ]
}