Profiles
Create Profile
Creates a new profile.
Method: client.profiles.create(): CreateProfileResponse
Endpoint: POST /api/profile
Response: CreateProfileResponse
Example:
Get Profile
Get details of an existing profile.
Method: client.profiles.get(id: str): ProfileResponse
Endpoint: GET /api/profile/{id}
Parameters:
id: string
- Profile ID
Response: ProfileResponse
Example:
Delete Profile
Delete an existing profile.
Method: client.profiles.delete(id: str): BasicResponse
Endpoint: DELETE /api/profile/{id}
Parameters:
id: string
- Profile ID
Response: BasicResponse
Example:
Types
CreateProfileResponse
ProfileResponse
Last updated