Overview
PUT/communities/{id}/members/mecommunity

Update the caller’s OWN membership bio (members only; "" clears it)

Replace a record in me by id.

Auth: bearerAuth — calls run as the authenticated user.

Parameters
  • idpathstring
Request body

application/json · optional

  • biostring

    One-line "what I’m building" intro for this community.

Example
{
  "bio": "string"
}
Responses
200

The updated membership row

  • communityIdstring
  • customerIdstring
  • rolestring

    owner | admin | moderator | member

  • biooptionalstring?

    The member’s one-line "what I’m building" intro for this community.

  • createdAtstring
  • updatedAtstring
Example
{
  "communityId": "string",
  "customerId": "string",
  "role": "string",
  "bio": "string",
  "createdAt": "string",
  "updatedAt": "string"
}
400

Error

  • erroroptionalobject
Example
{
  "error": {
    "message": "string",
    "code": "string"
  }
}
401

Error

  • erroroptionalobject
Example
{
  "error": {
    "message": "string",
    "code": "string"
  }
}
403

Error

  • erroroptionalobject
Example
{
  "error": {
    "message": "string",
    "code": "string"
  }
}
Code examples
cURL
curl -X PUT "https://api.agenticdeveloperhub.com/communities/{id}/members/me" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "bio": "string"
}'
JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/communities/{id}/members/me", {
  method: "PUT",
  headers: {
    "Authorization": "Bearer YOUR_TOKEN",
    "Content-Type": "application/json"
  },
  body: "{\n  \"bio\": \"string\"\n}",
});
const data = await res.json();