{ "opencollection": "1.0.0", "info": { "name": "Boom CDP Custom Objects API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "CDP Custom Objects", "type": "folder" }, "items": [ { "info": { "name": "List objects", "type": "http" }, "http": { "method": "GET", "url": "https://www.useboom.ai/api/v1/cdp/custom-objects", "params": [ { "name": "type", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" }, { "name": "cursor", "value": "", "type": "query" } ] }, "docs": "List custom objects of one type, newest first." }, { "info": { "name": "Upsert object", "type": "http" }, "http": { "method": "POST", "url": "https://www.useboom.ai/api/v1/cdp/custom-objects", "body": { "type": "json", "data": "{}" } }, "docs": "Create or update a custom object by type and external id. The type must already exist; free-form attributes are fully replaced." }, { "info": { "name": "Get object", "type": "http" }, "http": { "method": "GET", "url": "https://www.useboom.ai/api/v1/cdp/custom-objects/:type/:externalId", "params": [ { "name": "type", "value": "", "type": "path" }, { "name": "externalId", "value": "", "type": "path" } ] }, "docs": "Read one custom object by type and external id." }, { "info": { "name": "Delete object", "type": "http" }, "http": { "method": "DELETE", "url": "https://www.useboom.ai/api/v1/cdp/custom-objects/:type/:externalId", "params": [ { "name": "type", "value": "", "type": "path" }, { "name": "externalId", "value": "", "type": "path" } ] }, "docs": "Soft-delete a custom object and its links. Idempotent." }, { "info": { "name": "Batch upsert objects", "type": "http" }, "http": { "method": "POST", "url": "https://www.useboom.ai/api/v1/cdp/custom-objects/batch", "body": { "type": "json", "data": "{}" } }, "docs": "Upsert up to 1000 custom objects in one request. Idempotent and safely retryable." }, { "info": { "name": "List object types", "type": "http" }, "http": { "method": "GET", "url": "https://www.useboom.ai/api/v1/cdp/custom-objects/types" }, "docs": "List the organization's custom object types." }, { "info": { "name": "Create object type", "type": "http" }, "http": { "method": "POST", "url": "https://www.useboom.ai/api/v1/cdp/custom-objects/types", "body": { "type": "json", "data": "{}" } }, "docs": "Create a custom object type — required before you can upsert objects of that kind." }, { "info": { "name": "Get object type", "type": "http" }, "http": { "method": "GET", "url": "https://www.useboom.ai/api/v1/cdp/custom-objects/types/:type", "params": [ { "name": "type", "value": "", "type": "path" } ] }, "docs": "Read one custom object type by name." } ] } ], "bundled": true }