Get an SSO token reference

get

/services/rest/connect/v1.4/sSOTokenReferences/{id}

Request

Path Parameters
  • The unique identifier of the Single Sign On (SSO) token.
Back to Top

Response

Default Response

Body ()
Root Schema : sSOTokenReferences
Type: object
The Single Sign On (SSO) token used for authentication.
Show Source
Nested Schema : account
Type: object
The account represents a staff member in Oracle B2C Service. Examples of staff members are customer sales representatives, sales agents, site administrators, and so on. It is the reference to a resource in 'accounts' collection. Only ID or lookupName can be provided to specify the resource.
Nested Schema : sSOTokenReferences-attributes
Type: object
The information about the Single Sign On (SSO) token attributes.
Show Source
Nested Schema : sSOTokenReferences-sSOProvider
Type: object
An ID which has an associated name string. These IDs can be set by either value or name. If the name cannot uniquely determine the value, an error is generated.
Show Source
Nested Schema : namedIDs-sSOTokenReferences-sSOTokenType
Type: object
An ID which has an associated name string. These IDs can be set by either value or name. If the name cannot uniquely determine the value, an error is generated.
Show Source
Back to Top

Examples

Use GET with the following syntax to retrieve data for a specific SSO token reference:

https://your_site_interface/services/rest/connect/version/sSOTokenReferences/SSO_token_reference_id

Note:

TokenHash attribute is not supported, use the "id" attribute to fetch an SSOTokenReference object instead.

Request URI example

https://mysite.example.com/services/rest/connect/latest/sSOTokenReferences/33

Response body example

{
  "id": 33,
  "lookupName": "y/e4fanNQ5ZuYTRvW9uMEQfPt5eTfoKUK59y10eQ/w4=",
  "attributes": {
    "revoked": false,
    "singleUse": false,
    "used": false
  },
  "comment": null,
  "account": {
    "links": [
      {
        "rel": "self",
        "href": "https://mysite.example.com/services/rest/connect/latest/accounts/389"
      },
      {
        "rel": "canonical",
        "href": "https://mysite.example.com/services/rest/connect/latest/accounts/389"
      },
      {
        "rel": "describedby",
        "href": "https://mysite.example.com/services/rest/connect/latest/metadata-catalog/accounts",
        "mediaType": "application/schema+json"
      }
    ]
  },
  "expiresTime": "2030-11-24T18:04:18.000Z",
  "issuedTime": "2010-11-24T17:54:18.000Z",
  "sSOProvider": null,
  "sSOTokenType": {
    "id": 2
  },

  "links": [
    {
      "rel": "self",
      "href": "https://mysite.example.com/services/rest/connect/latest/sSOTokenReferences/33"
    },
    {
      "rel": "canonical",
      "href": "https://mysite.example.com/services/rest/connect/latest/sSOTokenReferences/33"
    },
    {
      "rel": "describedby",
      "href": "https://mysite.example.com/services/rest/connect/latest/metadata-catalog/sSOTokenReferences",
      "mediaType": "application/schema+json"
    }
  ]
}
Back to Top