curl --request POST \
--url https://api.sequinstream.com/api/http_pull_consumers/orders-pull-consumer/nack \
--header 'Authorization: Bearer YOUR_API_TOKEN'\
--header 'Content-Type: application/json' \
--data '{
"ack_ids": ["MTYyeJ7abUjl1pO", "MTYyeJ7abUjl1pP"]
}'
{ "success": true }
Nack messages in a Sequin Stream
curl --request POST \
--url https://api.sequinstream.com/api/http_pull_consumers/orders-pull-consumer/nack \
--header 'Authorization: Bearer YOUR_API_TOKEN'\
--header 'Content-Type: application/json' \
--data '{
"ack_ids": ["MTYyeJ7abUjl1pO", "MTYyeJ7abUjl1pP"]
}'
{ "success": true }
ack_id
values to nack.Each message returned by the /receive
endpoint contains an ack_id
that you can use to nack
the message.curl --request POST \
--url https://api.sequinstream.com/api/http_pull_consumers/orders-pull-consumer/nack \
--header 'Authorization: Bearer YOUR_API_TOKEN'\
--header 'Content-Type: application/json' \
--data '{
"ack_ids": ["MTYyeJ7abUjl1pO", "MTYyeJ7abUjl1pP"]
}'
{ "success": true }