Update Member
Update an existing member's information.
Update member details like categories, locations, and status.
Endpoint
PATCH /api/v1/members/:idRequest body
{
"name": "Jane Smith",
"phone": "555-9999",
"categories": ["plumbing", "water-heaters"],
"locations": ["Los Angeles", "Pasadena"],
"status": "active"
}Response
{
"id": "mem_xyz789",
"email": "member@example.com",
"name": "Jane Smith",
"status": "active",
"updated_at": "2024-01-15T11:00:00Z"
}