/app/events
This API is for fetching list of events associated with particular app.
URL
Method
POST
Headers
"Content-Type": 'application/json',
"Origin": <base URL> // Registered Base URl Request Body
Every request body must contain three properties: message, fyresign and messageHash.
Sample request body:
{
"message": {
"appId": "6274a30fc43e35144642u484",
"iat":1651813605,
"exp": 1651900005,
"metaData":{
"page":1,
"limit":2
}
},
"fyresign": "0x04b681aa455ae90948cd94ae8474c12c7ba9e1efd2f08473f75194b87ccdd01f44706f3c6b5a2708882957f5569af821bdc308b827d3b3ee28df3f6a044979421c",
"messageHash":"0x45f4b7343aad31ac28961666ee06d4930456995699f16d6a2ae17a318390da0f"
}message
appId: Id that you will get after creating app in Fyre Admin Dashboard.
iat: Timestamp at which the message was signed.
exp: Timestamp upto which the signature is valid.
metaData: This field is to send extra parameter like
limit,pagevalues.
fyresign: Signature generated by signing
messageusing app's private key. Send generated signature in this field.messageHash: Hash of the message.
Response Body
NOTE: See the full list of supported action types in Event Action Types page;
Last updated
Was this helpful?