cURL
curl --request POST \ --url https://api.example.com/profiles/create \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "name": "<string>" } '
{ "profile_id": "<string>", "name": "<string>", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" }
The access token received from the authorization server in the OAuth 2.0 flow.
Name of the profile
Successful Response
Profile ID (format: notte-profile-{16 hex chars})
Profile name
Profile creation timestamp
Profile last update timestamp
Was this page helpful?