Skip to main content

Bulk change address list entries

POST 

https://api.katapult.io/core/v1/address_lists/address_list/entries/bulk

Create or delete multiple address list entries for a given address list.

Scopes

  • address_lists

OAuth2 Scopes

When using OAuth2 authentication, scopes are prefixed with api.katapult.io/core/v1/.

Request

Body

    address_list

    object

    required

    id string

    add

    object[]

  • Array [

  • address string

    Address or network to add to the list.

    name string

    Optional name/comment.

  • ]

  • remove

    object[]

  • Array [

  • address string

    Address or network to add to the list.

    name string

    Optional name/comment.

  • ]

Responses

Create or delete multiple address list entries for a given address list.

Schema

    object

Request Collapse all
Base URL
https://api.katapult.io/core/v1
Auth
Body
{
  "address_list": {
    "id": "string"
  },
  "add": [
    {
      "address": "string",
      "name": "string"
    }
  ],
  "remove": [
    {
      "address": "string",
      "name": "string"
    }
  ]
}
ResponseClear

Click the Send API Request button above and see the response here!