All URIs are relative to https://zernio.com/api
| Method | HTTP request | Description |
|---|---|---|
| create_profile | POST /v1/profiles | Create profile |
| delete_profile | DELETE /v1/profiles/{profileId} | Delete profile |
| get_profile | GET /v1/profiles/{profileId} | Get profile |
| list_profiles | GET /v1/profiles | List profiles |
| update_profile | PUT /v1/profiles/{profileId} | Update profile |
models::ProfileCreateResponse create_profile(create_profile_request) Create profile
Creates a new profile with a name, optional description, and color.
| Name | Type | Description | Required | Notes |
|---|---|---|---|---|
| create_profile_request | CreateProfileRequest | [required] |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
models::DeleteAccountGroup200Response delete_profile(profile_id) Delete profile
Permanently deletes a profile by ID.
| Name | Type | Description | Required | Notes |
|---|---|---|---|---|
| profile_id | String | [required] |
models::DeleteAccountGroup200Response
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
models::GetProfile200Response get_profile(profile_id) Get profile
Returns a single profile by ID, including its name, color, and default status.
| Name | Type | Description | Required | Notes |
|---|---|---|---|---|
| profile_id | String | [required] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
models::ProfilesListResponse list_profiles(include_over_limit) List profiles
Returns profiles sorted by creation date. Use includeOverLimit=true to include profiles that exceed the plan limit.
| Name | Type | Description | Required | Notes |
|---|---|---|---|---|
| include_over_limit | Option<bool> | When true, includes over-limit profiles (marked with isOverLimit: true). | [default to false] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
models::UpdateProfile200Response update_profile(profile_id, update_profile_request) Update profile
Updates a profile's name, description, color, or default status.
| Name | Type | Description | Required | Notes |
|---|---|---|---|---|
| profile_id | String | [required] | ||
| update_profile_request | UpdateProfileRequest | [required] |
models::UpdateProfile200Response
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]