DEL /v1/intents

The DEL /v1/intents endpoint allows you to cancel multiple intents in a single request.


Request

Endpoint

DEL https://snipe.merkle.io/v1/intents

Body

The request body must contain an array of intent IDs to delete.

{
  "ids": ["uuid1", "uuid2"]
}
Field
Type
Required
Description

ids

string[]

Yes

An array of unique intent IDs to delete.


Response

Success Response

  • Status: 200 OK All intents in the provided list were successfully canceled.

Last updated