Retrieve a specific member

Fetch the details of a specific member by providing its unique ID.

GET

Parameters

Path Parameters

OrganizationId
REQUIRED
Unique identifier of the organization
MemberId
REQUIRED
Unique identifier of the organization member
Status codeDescription
200Successfully retrieved the member details.
400Bad request error - the request contains invalid parameters or malformed data
500Internal server error - an unexpected error occurred on the server
cURL
curl -L \
"https://blockv-labs.io/organizations/{organizationId}/members/{memberId}" \
-H 'Accept: application/json'
Response
{
"id": "string",
"wallet_id": "string",
"email": "string",
"invite_status": "pending",
"role_name": "string",
"when_created": "2024-01-01T00:00:00Z",
"when_modified": "2024-01-01T00:00:00Z"
}
json
{
"type": "object",
"required": [
"id",
"email",
"role_name",
"invite_status",
"when_created"
],
"properties": {
"id": {
"type": "string",
"x-oapi-codegen-extra-tags": {
"json": "id,omitempty",
"bson": "_id,omitempty"
},
"x-go-type": "id.ID",
"x-go-type-import": {
"path": "github.com/vlabsio/smarttoken/pkg/types/id"
}
},
"wallet_id": {
"type": "string",
"x-oapi-codegen-extra-tags": {
"bson": "wallet_id,omitempty"
},
"x-go-type": "id.ID",
"x-go-type-import": {
"path": "github.com/vlabsio/smarttoken/pkg/types/id"
}
},
"email": {
"type": "string",
"x-oapi-codegen-extra-tags": {
"bson": "email,omitempty"
}
},
"invite_status": {
"type": "string",
"x-oapi-codegen-extra-tags": {
"bson": "invite_status,omitempty"
},
"enum": [
"pending",
"accepted",
"declined"
],
"x-go-type-skip-optional-pointer": true
},
"role_name": {
"type": "string",
"x-oapi-codegen-extra-tags": {
"bson": "role_name,omitempty"
}
},
"when_created": {
"type": "string",
"x-oapi-codegen-extra-tags": {
"bson": "when_created,omitempty"
},
"format": "date-time"
},
"when_modified": {
"type": "string",
"x-oapi-codegen-extra-tags": {
"bson": "when_modified,omitempty"
},
"format": "date-time",
"x-go-type-skip-optional-pointer": true
}
}
}