Channel Profile Update
POST
/platform/v1/channels/{channel_id}/profile
const url = 'https://example.com/platform/v1/channels/1/profile';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"about":"example","address":"example","description":"example","email":"example","profile_picture_handle":"example","vertical":"example","websites":["example"]}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/platform/v1/channels/1/profile \ --header 'Content-Type: application/json' \ --data '{ "about": "example", "address": "example", "description": "example", "email": "example", "profile_picture_handle": "example", "vertical": "example", "websites": [ "example" ] }'Update the WhatsApp business profile. Only the provided fields are
sent to Meta (exclude_none=True); omitted fields are left unchanged.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” channel_id
required
Channel Id
integer
Request Body required
Section titled “Request Body required ” Media type application/json
PlatformBusinessProfileUpdate
POST body for POST /platform/v1/channels/{id}/profile.
Every field is optional — only the provided fields are sent to Meta
(exclude_none=True in the router). messaging_product is injected
by the service layer.
object
websites
Any of:
Array<string>
null
Example generated
{ "about": "example", "address": "example", "description": "example", "email": "example", "profile_picture_handle": "example", "vertical": "example", "websites": [ "example" ]}Responses
Section titled “ Responses ”Successful Response
Media type application/json
Example generated
exampleValidation Error
Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
ctx
Context
object
input
Input
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Example generated
{ "detail": [ { "ctx": {}, "input": "example", "loc": [ "example" ], "msg": "example", "type": "example" } ]}