Skip to main content
PATCH
/
team
/
members
/
{id}
Update a team member
curl --request PATCH \
  --url https://api.engagefabric.com/team/members/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "John Doe"
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.engagefabric.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT token for admin console authentication

Path Parameters

id
string
required

Member UUID

Body

application/json
name
string

Updated name for the member

Maximum string length: 255
Example:

"John Doe"

role
enum<string>

Role to assign to the member

Available options:
OWNER,
ADMIN,
DESIGNER,
DEVELOPER,
VIEWER

Response

Member updated successfully