Events
Verify Event Ingestion
Verify if events with specific idempotency events have been ingested into Lotus' record of events.
POST
/
api
/
verify_idems_received
/
Authorization
Body
curl --request POST \
--url https://api.uselotus.io/api/verify_idems_received/ \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"customer_id": "<string>",
"idempotency_ids": [
"<string>"
],
"number_days_lookback": 123
}'
{
"ids_not_found": [
"<string>"
],
"status": "success"
}
This method is currently not in our SDK, and is simply for debugging purposes.
Authorizations
Authorization
string
headerrequiredToken-based authentication with required prefix "Token"
Body
customer_id
string
idempotency_ids
string[]
requirednumber_days_lookback
integer
default: 30Response
200 - application/json
ids_not_found
string[]
requiredstatus
enum<string>
requiredsuccess
- success
Available options:
success
curl --request POST \
--url https://api.uselotus.io/api/verify_idems_received/ \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"customer_id": "<string>",
"idempotency_ids": [
"<string>"
],
"number_days_lookback": 123
}'
{
"ids_not_found": [
"<string>"
],
"status": "success"
}