Headers
Authentication Key
Body
application/json
User data
curl --request PUT \
--url https://chat.botpress.cloud/{webhookUrl}/users/me \
--header 'Content-Type: application/json' \
--header 'x-user-key: <x-user-key>' \
--data '{
"name": "<string>",
"pictureUrl": "<string>",
"profile": "<string>"
}'{
"user": {
"id": "<string>",
"name": "<string>",
"pictureUrl": "<string>",
"profile": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
}Update User
curl --request PUT \
--url https://chat.botpress.cloud/{webhookUrl}/users/me \
--header 'Content-Type: application/json' \
--header 'x-user-key: <x-user-key>' \
--data '{
"name": "<string>",
"pictureUrl": "<string>",
"profile": "<string>"
}'{
"user": {
"id": "<string>",
"name": "<string>",
"pictureUrl": "<string>",
"profile": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
}Authentication Key
User data
Was this page helpful?