Custom lists
Custom lists allow you to upload addresses and data to the platform. A list could be a tag from a third party CRM, addresses collected for an NFT allowlist or a manually created list that you manage.
Last updated
{
"name": "The name for your Custom List"
}{
"id": 1337,
"name": "My new list"
}https://backend.absolutelabs.app/api/audiences/custom-list/{list_id}- Authentication: Bearer {your API key}
- Content-Type: application/json{
"add": ["0xabc...", "0x123...", ...],
"remove": ["0xabc...", "0x123...", ...],
"name": "New list name"
}{
"name_update": {
"status": "success"
},
"addresses_addition": {
"status": "success"
},
"addresses_removal": {
"status": "success"
}
}