Skip to main content
PUT
/
editmember
Update Member
curl --request PUT \
  --url https://api.example.com/editmember \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": 123,
  "firstname": "<string>",
  "lastname": "<string>",
  "email": "<string>",
  "phone": "<string>",
  "status": "<string>"
}
'
{
  "status": "success",
  "data": {
    "id": 42,
    "firstname": "Jane",
    "lastname": "Smith-Updated",
    "email": "jane@example.com",
    "status": "active"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.transparencyhubnetwork.ai/llms.txt

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

Request Body

id
integer
required
Member ID to update.
firstname
string
Updated first name.
lastname
string
Updated last name.
email
string
Updated email address.
phone
string
Updated phone number.
status
string
Member status: active, inactive, suspended.

Response

{
  "status": "success",
  "data": {
    "id": 42,
    "firstname": "Jane",
    "lastname": "Smith-Updated",
    "email": "jane@example.com",
    "status": "active"
  }
}