Perform an Event submission
Perform a revenue activity event submission request using the Event API with the bearerAuth token.
Summary
With the JWT token received from the Connect API call, make a event submission request by calling the Event API, providing the pincode, the event encrypted string, the reference, the extrainfo if any, notes if any and a trackid.
This call, if successful, will remotely register a NTR activity event in NTRMS.
Use the following authorization header for the Event API
Authorization: Bearer <token>
You may add a UUID trackid parameter to the body to track your request
e.g.
{
"pincode": "123456",
"reference": "BDR0012501001",
"event": "jsyyhejc7rw4egrhser64qkbcecesjehssgj6c44aw3arvfkashdc83chdg3deajy534er46sk464",
"extrainfo": "{\"locid\":10}",
"notes": "Testing",
"trackid": "d290f1ee-6c54-4b01-90e6-d701748f0851"
}
Done!