GET SsoEndpoints/Get/{ID}

Gets a specific User by ID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
ID

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

SsoEndpointDTO
NameDescriptionTypeAdditional information
Name

Name

string

None.

Description

Description

string

None.

PostUrl

Post Url

string

None.

oAuthKey

oAuth Key

string

None.

oAuthHash

oAuth Hash

string

None.

RequirePassword

Gets or sets the required password

boolean

None.

Group

Gets or sets the Group ID

globally unique identifier

None.

DisplayIndex

Gets or sets the Display Index

integer

None.

Enabled

Gets or sets if the endpoint is enabled

boolean

None.

ID

globally unique identifier

None.

Timestamp

Collection of byte

None.

Response Formats

application/json, text/json

Sample:
{
  "results": [
    {
      "Name": "sample string 1",
      "Description": "sample string 2",
      "PostUrl": "sample string 3",
      "oAuthKey": "sample string 4",
      "oAuthHash": "sample string 5",
      "RequirePassword": true,
      "Group": "65d2b51b-31b0-490a-a795-7ca99aa4ec8c",
      "DisplayIndex": 8,
      "Enabled": true,
      "ID": "b1822fc9-8c92-44d9-b038-ac10d9002848",
      "Timestamp": "QEA="
    }
  ]
}

text/javascript

Sample:
{"results":[{"Name":"sample string 1","Description":"sample string 2","PostUrl":"sample string 3","oAuthKey":"sample string 4","oAuthHash":"sample string 5","RequirePassword":true,"Group":"65d2b51b-31b0-490a-a795-7ca99aa4ec8c","DisplayIndex":8,"Enabled":true,"ID":"b1822fc9-8c92-44d9-b038-ac10d9002848","Timestamp":"QEA="}]}

application/bson

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

application/xml, text/xml

Sample:
<SsoEndpointDTO 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">b1822fc9-8c92-44d9-b038-ac10d9002848</ID>
  <Timestamp xmlns="http://schemas.datacontract.org/2004/07/Lpp.Objects">QEA=</Timestamp>
  <Description>sample string 2</Description>
  <DisplayIndex>8</DisplayIndex>
  <Enabled>true</Enabled>
  <Group>65d2b51b-31b0-490a-a795-7ca99aa4ec8c</Group>
  <Name>sample string 1</Name>
  <PostUrl>sample string 3</PostUrl>
  <RequirePassword>true</RequirePassword>
  <oAuthHash>sample string 5</oAuthHash>
  <oAuthKey>sample string 4</oAuthKey>
</SsoEndpointDTO>