Description
Sends a push notification to the Smart ID Mobile App.
Method
POST
JSON data
JSON data
CODE
{
"messageId": "7bcc1708-be42-48f4-ac67-c76afddae805",
"pushId": " 74db355b-ecec-48b4-a4d8-9e6f13084bab",
"requestor": "Acme",
"type": "AUTH"
}
JSON schema
JSON schema
CODE
{
"type":"object",
"required":[
"pushId",
"requestor",
"type",
"messageId"
],
"properties":{
"pushId":{
"type":"string",
"description":"Globally unique push identifier. Make sure that the app uses the same id. E.g. base64(mbox-url)"
},
"requestor":{
"type":"string",
"description":"Requestor of the push notification"
},
"type":{
"type":"string",
"enum":[
"AUTH",
"SIGN"
],
"description":"Type of push"
},
"messageId":{
"type":"string",
"description":"Id of message which notification is sent for"
},
"timeToLive":{
"type":"integer",
"description":"OPTIONAL - Time to live for notification (will override configured value)"
}
}
}