Zernio
Zernio
API Reference

Profiles

List profilesGETCreate profilePOSTGet profileGETUpdate profilePUTDelete profileDELETE
Dashboard
llms.txtOpenAPI
OverviewPlatformsAPI ReferenceResources
Profiles

Get profile

Returns a single profile by ID, including its name, color, and default status.


GET
/v1/profiles/{profileId}

Authorization

bearerAuth
AuthorizationBearer <token>

API key authentication: send your Zernio API key in the Authorization header, prefixed with Bearer.

In: header

Path Parameters

profileId*string

Response Body

application/json

application/json

application/json

{  "profile": {    "_id": "64f0a1b2c3d4e5f6a7b8c9d0",    "userId": "6507a1b2c3d4e5f6a7b8c9d0",    "name": "Marketing Team",    "description": "Profile for marketing campaigns",    "color": "#4CAF50",    "isDefault": false,    "createdAt": "2024-11-01T10:00:00Z"  }}
Was this page helpful?

Create profile

Creates a new profile with a name, optional description, and color. Names are unique per team: a duplicate returns a 409 whose details.existingProfileId carries the id of the existing profile. Send an Idempotency-Key header to make retries safe: a retried create with the same key and body replays the original 201 (same _id) instead of conflicting.

Update profile

Updates a profile's name, description, color, or default status.