GET Registries/Get/{ID}

Returns a specified registry

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ID

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

RegistryDTO
NameDescriptionTypeAdditional information
Deleted

Gets or sets the indicator to specify if deleted

boolean

None.

Type

Gets or sets the registrytypes

RegistryTypes

None.

Name

Gets or sets the registry name

string

None.

Description

Gets or sets the registry description

string

None.

RoPRUrl

Gets or sets the RoPRUrl

string

None.

ID

globally unique identifier

None.

Timestamp

Collection of byte

None.

Response Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "Deleted": true,
      "Type": 0,
      "Name": "sample string 2",
      "Description": "sample string 3",
      "RoPRUrl": "sample string 4",
      "ID": "6b6e39ff-1776-4761-bf1a-d06b623ed322",
      "Timestamp": "QEA="
    }
  ]
}

text/javascript

Sample:
{"results":[{"Deleted":true,"Type":0,"Name":"sample string 2","Description":"sample string 3","RoPRUrl":"sample string 4","ID":"6b6e39ff-1776-4761-bf1a-d06b623ed322","Timestamp":"QEA="}]}

application/bson

Sample:
Binary JSON content. See http://bsonspec.org for details.

application/xml, text/xml

Sample:
<RegistryDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lpp.Dns.DTO">
  <ID xmlns="http://schemas.datacontract.org/2004/07/Lpp.Objects">6b6e39ff-1776-4761-bf1a-d06b623ed322</ID>
  <Timestamp xmlns="http://schemas.datacontract.org/2004/07/Lpp.Objects">QEA=</Timestamp>
  <Deleted>true</Deleted>
  <Description>sample string 3</Description>
  <Name>sample string 2</Name>
  <RoPRUrl>sample string 4</RoPRUrl>
  <Type>Registry</Type>
</RegistryDTO>