Add Access List Addresses
New addresses can be added to an access list as needed by entering an optional user friendly name and address.
put
https://api.hypermint.com/v1
/access-list/:accessListId/addresses
Add new addresses to access list
The accessListId can be found in the url on the access list page https://app.hypermint.com/access-list/:accessListId
Parameters
Header
HM_ACCESS_KEY*
HyperMint Access Key
HM_ACCESS_KEY_SECRET*
HyperMint Access Key Secret
Body
addresses*
Array
addresses is an array of wallet addresses to be added to the specified access list. see interface AddAddressesRequest below for more details
Responses
200: OK
successfully added
400: Bad Request
The addresses array field is required in your request
400: Bad Request
You must have at least one address entry in your request
400: Bad Request
The address field is required in all of your addresses entries
404: Not Found
Access list does not exist or you do not have permission
interface AddAddressesRequest {
addresses: {
address: string;
name?: string;
}[];
}
Property | Required | Description |
---|---|---|
address | Yes | The wallet address of the user you want to add to the access list |
name | No | The friendly name of the access list address to be added which can be viewed on the dashboard |
Something not quite right, unclear or can't find what you are looking for? Please let us know at [email protected] and we will get back to you as soon as we can.
Last modified 8mo ago