Update the address

Updating information at

Update the address

POSThttps://ocp.payonchain.org/api-gateway/address-book/update
Header parameters
Body
addressIdstring

The ID of the address in the system

aliasstring

Address name

commentstring

Comment on the address

Response
Body
success*boolean

Request success indicator

response*null
Request
const response = await fetch('https://ocp.payonchain.org/api-gateway/address-book/update', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
{
  "success": false
}

Last updated