See OauthUsageData: Oauth Usage by Client ID per Day
CREATE VIEW vwoauthusagedata AS (
SELECT oauthusagedata.clientid,
oauthusagedata.rowdate,
oauthusagedata.clientname,
oauthusagedata.organizationid,
oauthusagedata.userid,
oauthusagedata.status200,
oauthusagedata.status300,
oauthusagedata.status400,
oauthusagedata.status500,
oauthusagedata.status429,
oauthusagedata.updated
FROM oauthusagedata
)
Name | Type | Default | Nullable | Children | Parents | Comment |
---|---|---|---|---|---|---|
clientid | varchar(50) | true | Oauth Client GUID | |||
rowdate | timestamp without time zone | true | Date | |||
clientname | varchar(200) | true | Oauth Client Name | |||
organizationid | varchar(50) | true | Home Organization GUID | |||
userid | varchar(50) | true | Oauth Agent GUID | |||
status200 | integer | true | Count of 200 Response Codes | |||
status300 | integer | true | Count of 300 Response Codes | |||
status400 | integer | true | Count of 300 Response Codes | |||
status500 | integer | true | Count of 500 Response Codes | |||
status429 | integer | true | Count of 429 Response Codes - Rate limiting Responses | |||
updated | timestamp without time zone | true | Date Row Updated (UTC) |
Name | Columns | Comment | Type |
---|---|---|---|
public.oauthusagedata | 12 | Oauth Usage by Client ID per Day | BASE TABLE |