Skip to content

Manage System Users

Updated: Jun 16, 2026

Embedded signup v2 will be deprecated on October 15, 2026. Migrate your integration to v4 before that date to avoid disruption. See Versions for the full upgrade path.

Adding your System User to shared WhatsApp Business Accounts allows you to programmatically manage the accounts. This guide covers actions Solution Partners may need to perform to manage their system users.

For help creating a system user and generating your system user access token, see Access Tokens, System User access tokens.

Retrieve system user IDs

You can cache the System User IDs for future use.

Request

curl -i -X GET "https://graph.facebook.com/<API_VERSION>/<WHATSAPP_BUSINESS_ACCOUNT_ID>/system_users  
  ?access_token=<SYSTEM_USER_ACCESS_TOKEN>"

To find the ID of a business, go to Business Manager > Business Settings > Business Info. There, you will see information about the business, including the ID.

Response

{  
  "data": [  
    {  
      "id": "1972555232742222",  
      "name": "My System User",  
      "role": "EMPLOYEE"  
    }  
  ]  
}

Add system users to a WhatsApp Business account

For this API call, you need to use the access token of a System User with admin permissions.

Request syntax

In the following example, use the ID for the assigned WABA.

curl -i -X POST "https://graph.facebook.com/<API_VERSION>/<WHATSAPP_BUSINESS_ACCOUNT_ID>/assigned_users  
  ?user=<ASSIGNED_USER_ID>  
  &tasks=['<ASSIGNED_USERS_TASKS_AND_PERMISSIONS>']  
  &access_token=<SYSTEM_USER_ACCESS_TOKEN>"

To find the ID of a WhatsApp Business Account, go to Business Manager > Business Settings > Accounts > WhatsApp Business Accounts. Find the account you want to use and click on it. A panel opens, with information about the account, including the ID.

For the <ASSIGNED_USER_ID>, use the system user ID returned from your /<WHATSAPP_BUSINESS_ACCOUNT_ID>/system_users call.

Permissions

NameDescription
MANAGEProvides admin access. Users can have admin access on a WhatsApp Business account that is shared with Admin permissions. Note: If you are a Solution Partner trying to add a user to a WhatsApp Business account that is shared with you via a Multi-Partner Solution, then you would need to account for the following scenarios: * If you are not granted MESSAGING permission on the solution, then you need to decide which granular tasks you need when adding the user to the shared WhatsApp Business account: DEVELOP, MANAGE_TEMPLATES, MANAGE_PHONE, VIEW_COST, MANAGE_EXTENSIONS, VIEW_PHONE_ASSETS, MANAGE_PHONE_ASSETS, VIEW_TEMPLATES, VIEW_INSIGHTS, MANAGE_USERS, MANAGE_BILLING. * In such scenario, also note that MANAGE_BILLING is needed for sharing Line of Credit. * MANAGE will only work if you are given full access on the solution i.e. including MESSAGING.
DEVELOPProvides developer access. Users can have developer access on a WhatsApp Business account that is shared with Standard permissions.

Response

{  
  "success": true  
}

Retrieve assigned users

You can fetch the assigned users of the WhatsApp Business account to verify that the user was added. This is not a required step but helps with validation.

Request syntax

In the following example, use the ID for the assigned WABA.

curl -i -X GET "https://graph.facebook.com/<API_VERSION>/<WHATSAPP_BUSINESS_ACCOUNT_ID>/assigned_users  
  ?business=<WHATSAPP_BUSINESS_ACCOUNT_ID>  
  &access_token=<SYSTEM_USER_ACCESS_TOKEN>"

Response

{  
  "data": [  
    {  
      "id": "1972385232742142",  
      "name": "Anna Flex",  
      "tasks": [  
        "MANAGE"  
      ]  
    },  
    {  
      "id": "1972385232752545",  
      "name": "Jasper Brown",  
      "tasks": [  
        "DEVELOP"  
      ]  
    }  
  ]  
}

See also

Unofficial mirror for reference/search purposes. All content originates from developers.facebook.com — see the source link at the top of each page. Machine-readable indexes: llms.txt · llms-full.txt · About