Audiences
AuthTokens
Brands
Inbound
Lists
Messages
Notifications
Profiles
Tenants
User Preferences
User Tenants
Profiles
Update a profile
PATCH
/
profiles
/
{user_id}
Copy
Ask AI
curl --request PATCH \
--url https://api.courier.com/profiles/{user_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"patch": [
{
"op": "<string>",
"path": "<string>",
"value": "<string>"
}
]
}'
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
A unique identifier representing the user associated with the requested profile.
Body
application/json
Copy
Ask AI
curl --request PATCH \
--url https://api.courier.com/profiles/{user_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"patch": [
{
"op": "<string>",
"path": "<string>",
"value": "<string>"
}
]
}'
Assistant
Responses are generated using AI and may contain mistakes.