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