GET api/ConfigElement/GetConfigElementDefinition/{id}
Gets the Config Element definition.
Access
Requires authentication.
Requires SSL.
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
id | The identifier. |
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:18:05.0384381+02:00</MethodExpirationDate> <ResponseObject> <Id>1</Id> <Readonly>true</Readonly> <SpecificationListingId>1</SpecificationListingId> <Code>sample string 2</Code> <Comment>sample string 3</Comment> <ConfigTypeSymbol>sample string 4</ConfigTypeSymbol> <GroupCount>1</GroupCount> <GroupSize>1</GroupSize> <RowRevision>sample string 1</RowRevision> <UnitWeight>1</UnitWeight> <TotalCount>1</TotalCount> <OrderedAmount>1</OrderedAmount> </ResponseObject> </ApiResponse>
application/json, text/json
Sample:
{ "ResponseCode": 1, "ResponseDescription": "sample string 2", "MethodExpirationDate": "2025-04-29T15:18:05.0384381+02:00", "ResponseObject": { "RowRevision": "sample string 1", "UnitWeight": 1.0, "TotalCount": 1, "OrderedAmount": 1.0, "SpecificationListingId": 1, "Code": "sample string 2", "Comment": "sample string 3", "ConfigTypeSymbol": "sample string 4", "GroupCount": 1, "GroupSize": 1, "Id": 1, "Readonly": true } }