Last updated 6 months ago
Was this helpful?
GET /api/v2/identities HTTP/1.1 Host: api.apono.io Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
OK
{ "data": [ { "type": "text", "name": "text", "id": "text" } ], "pagination": { "total": 1, "limit": 1, "offset": 1 } }
100
0
GET /api/v2/bulk/identities/attributes HTTP/1.1 Host: api.apono.io Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
{ "data": [ { "email": "text", "attributes": { "ANY_ADDITIONAL_PROPERTY": "text" } } ], "pagination": { "total": 1, "limit": 1, "offset": 1 } }
PUT /api/v2/bulk/identities/attributes HTTP/1.1 Host: api.apono.io Authorization: Bearer YOUR_SECRET_TOKEN Content-Type: application/json Accept: */* Content-Length: 66 [ { "email": "text", "attributes": { "ANY_ADDITIONAL_PROPERTY": "text" } } ]
{ "summary": { "total": 1, "succeeded": 1, "failed": 1 }, "results": [ { "email": "text", "success": true, "errors": [ { "error_code": "text", "error_details": "text" } ] } ] }
DELETE /api/v2/bulk/identities/attributes HTTP/1.1 Host: api.apono.io Authorization: Bearer YOUR_SECRET_TOKEN Content-Type: application/json Accept: */* Content-Length: 45 [ { "email": "text", "attribute_types": [ "text" ] } ]