Last updated 1 month ago
OK
const response = await fetch('https://api.apono.io/api/v2/bulk/identities/attributes', { method: 'GET', headers: {}, }); const data = await response.json();
{ "data": [ { "email": "text" } ], "pagination": { "total": 0, "limit": 0, "offset": 0 } }
const response = await fetch('https://api.apono.io/api/v2/identities', { method: 'GET', headers: {}, }); const data = await response.json();
{ "data": [ { "type": "text", "name": "text", "id": "text" } ], "pagination": { "total": 0, "limit": 0, "offset": 0 } }
const response = await fetch('https://api.apono.io/api/v2/bulk/identities/attributes', { method: 'PUT', headers: { "Content-Type": "application/json" }, body: JSON.stringify([ { "email": "text" } ]), }); const data = await response.json();
{ "summary": { "total": 0, "succeeded": 0, "failed": 0 }, "results": [ { "email": "text", "success": false, "errors": [ { "error_code": "text", "error_details": "text" } ] } ] }
const response = await fetch('https://api.apono.io/api/v2/bulk/identities/attributes', { method: 'DELETE', headers: { "Content-Type": "application/json" }, body: JSON.stringify([ { "email": "text", "attribute_types": [ "text" ] } ]), }); const data = await response.json();