GET
/
organization
/
members
/
{id}
curl --request GET \
  --url https://api.wapikit.com/api/organization/members/{id}
{
  "member": {
    "uniqueId": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "accessLevel": "Owner",
    "name": "<string>",
    "email": "<string>",
    "roles": [
      {
        "uniqueId": "<string>",
        "name": "<string>",
        "description": "<string>",
        "permissions": [
          "Get:OrganizationMember"
        ]
      }
    ]
  }
}

Path Parameters

id
string
required

The id value of the organization member you want to get.

Response

200
application/json

organization member object

The response is of type object.