Authorization

Summary

An OAuth Authorization

Description

An authorization given by a resource owner to a client application to access his/her resources.

Fields

Field Name Type Since Version Description
scopes [String] A list of scopes that a resource owner has authorized access to.
created Date The Date that the resource owner granted access to the scope(s).
applicationID String The application requesting authorization.
subject String The unique identifier representing the resource owner who granted authorization to the client.
id String The unique identifier for the authorization

Example JSON

{
  "scopes" : [ "" ],
  "created" : 1399197112000,
  "applicationID" : "3c82acfc-26c2-11e4-a149-a6c5e4d22fb7",
  "subject" : "sampleuser",
  "id" : "b76a3e23-deca-49ab-9682-79cd503b7e3a"
}