Skip to main content
POST
/
v2
/
address-book
/
entries
Create address book entry
curl --request POST \
  --url https://sandbox.groundtech.co/v2/address-book/entries \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "address": "0x52908400098527886E0F7030069857D2E4169EE7",
  "chain": "arbitrum",
  "label": "Ops treasury"
}
'
{
  "entry": "<unknown>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
address
string
required

Destination address to whitelist.

chain
any
required
label
string
required

Human-readable label for this destination.

Required string length: 1 - 120

Response

Address book entry created

entry
any