Get A Specific Sub-Organization Member

Get A Specific Sub-Organization Member

Retrieve profile information, organization role, and status for a specific sub-organization user by providing the sub-organization ID and their member ID.


HTTP Method and URL

Method: GET
URL: {{host}}/api/v2/sub-organizations/:subOrganizationUuid/members/:subOrgMemberId?user_type=ENTERPRISE_API


Headers

KeyValueDescription
user-token{{user-token}}Bearer token for authentication

Authentication Requirements

This endpoint requires authentication via a bearer token. Set the user-token variable in your environment or as a header.


Path and Query Parameters

Path Parameters:

  • subOrganizationUuid (string, required): The unique identifier of the sub-organization.

  • subOrgMemberId (string or integer, required): The unique identifier of the sub-organization member.

Query Parameters:

  • user_type (string, required): Must be set to ENTERPRISE_API.

Request Body

This request does not require a body.


Example Request

GET {{host}}/api/v2/sub-organizations/dcd384fd-62e3-481f-8cff-6eda0e90c944/members/16?user_type=ENTERPRISE_API
user-token: {USER-TOKEN}

Example Successful Response

{
  "memberId": 16,
  "subOrganizationUuid": "dcd384fd-62e3-481f-8cff-6eda0e90c944",
  "profile": {
    "name": "Jane Doe",
    "email": "[email protected]"
  },
  "role": "admin",
  "status": "active"
}

Error Responses

  • 401 Unauthorized: Authentication failed or missing token.

  • 404 Not Found: Member or sub-organization not found.

  • 400 Bad Request: Invalid parameters.


Usage Notes

  • Ensure the user-token is valid and has permission to access the specified sub-organization.

  • The user_type query parameter must always be set to ENTERPRISE_API.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…
Path Params
string
required

The sub-organization UUID; required

integer
required

The sub-organization member ID; required

Query Params
string
Response

Language
Credentials
Bearer
URL
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json