GET api/Specification/GetSpecification/{id}

Gets the specification.

Access

Requires authentication.

Requires SSL.

Request Information

Parameters

NameDescriptionAdditional 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>2024-05-21T05:14:37.0615428+02:00</MethodExpirationDate>
  <ResponseObject>
    <Id>1</Id>
    <Readonly>true</Readonly>
    <ProjectId>1</ProjectId>
    <SpecificationName>sample string 2</SpecificationName>
    <LockedAt>2024-05-21T05:14:37.0615428+02:00</LockedAt>
    <LockedByName>sample string 3</LockedByName>
    <FirstLabelColorId>1</FirstLabelColorId>
    <SecondLabelColorId>1</SecondLabelColorId>
    <ObjectDescription1>sample string 4</ObjectDescription1>
    <ObjectDescription2>sample string 5</ObjectDescription2>
    <ObjectDescription3>sample string 6</ObjectDescription3>
    <ObjectDescription4>sample string 7</ObjectDescription4>
    <ModifiedAt>2024-05-21T05:14:37.0615428+02:00</ModifiedAt>
    <OwnsLock>true</OwnsLock>
    <TotalWeight>1</TotalWeight>
  </ResponseObject>
</ApiResponse>

application/json, text/json

Sample:
{
  "ResponseCode": 1,
  "ResponseDescription": "sample string 2",
  "MethodExpirationDate": "2024-05-21T05:14:37.0615428+02:00",
  "ResponseObject": {
    "ModifiedAt": "2024-05-21T05:14:37.0615428+02:00",
    "OwnsLock": true,
    "TotalWeight": 1.0,
    "ProjectId": 1,
    "SpecificationName": "sample string 2",
    "LockedAt": "2024-05-21T05:14:37.0615428+02:00",
    "LockedByName": "sample string 3",
    "FirstLabelColorId": 1,
    "SecondLabelColorId": 1,
    "ObjectDescription1": "sample string 4",
    "ObjectDescription2": "sample string 5",
    "ObjectDescription3": "sample string 6",
    "ObjectDescription4": "sample string 7",
    "Id": 1,
    "Readonly": true
  }
}