Events: Authentication
Learn about how to create authentication events using notification API.
There are four event types around authentication:
credential-delete
- emitted when a credential is deleted by a usercredential-auth
- emitted when a new credential is authenticated by a usercredential-reauth
- emitted when a credential’s authentication is refreshed by a usercredential-deauth
- emitted when a credential has been identified as being expired and all attempts to refresh failed
Field | Type | Description |
---|---|---|
service | String | The social service the credential is for. Today, these include, but are not limited to:
|
serviceId | String | The id of the account on the network. |
name | String | The name of the account on the service. |
when | Number | The time the event occurred in milliseconds since epoch. |
message | String | The message about the event happening. Typically, this is simply success in that the event completed and was registered successfully. |
Example payload:
{
"service": "instagram",
"serviceId": "673abc9794",
"name": "will.i.am",
"when": 1520987518000,
"message": "success"
}
Updated over 1 year ago