Skip to main content
POST
/
profile
/
name
Change WhatsApp profile name
curl --request POST \
  --url https://api.wppfy.com/profile/name \
  --header 'Content-Type: application/json' \
  --header 'token: <api-key>' \
  --data '
{
  "name": "My Company - Support"
}
'
{
  "success": true,
  "message": "Profile name changed successfully",
  "profile": {
    "name": "My Company - Support",
    "updated_at": 1704067200
  }
}

Authorizations

token
string
header
required

Body

application/json
name
string
required

New WhatsApp profile name

Maximum string length: 25
Example:

"My Company - Support"

Response

Profile name changed successfully

success
boolean
Example:

true

message
string
Example:

"Profile name changed successfully"

profile
object