Get membership requester info
Get requester info for a specific space membership request made via the Marketplace.
This operation requires privilege space_manage_in_marketplace
or oz_spaces_view admin privilege.
Example cURL requests
Get space membership requester info
curl -u admin:password -H "Content-type: application/json" -X GET \
https://$ZONE_HOST/api/v3/onezone/spaces/marketplace/$SPACE_ID/request/$REQUEST_ID/requester_info
{
"userId": "585110fde9d1a52c93f8eb22c0614e47",
"fullName": "Joe Joester",
"username": "JoJo",
"contactEmail": user@example.com
}
Path parameters
| Parameter | Type & Description |
|---|---|
| id required | string Space Id. |
| rid required | string Space membership request Id. |
Request Examples
onezone-rest-cli getMembershipRequesterInfo id=$SPACE_ID rid=$REQUEST_IDResponses
Space membership requester info.
Unique user Id.
User's full name (given names + surname).
User's human-readable identifier, unique across the system. Makes it easier to identify the user and can be used for signing in with password.
User contact email address.
Example
{
"userId": "585110fde9d1a52c93f8eb22c0614e47",
"fullName": "Joe Joester",
"username": "JoJo",
"contactEmail": "user@example.com"
}Invalid request.
error object Object describing an error.
Object describing an error.
String identifying the error type. Does not change between error instances.
Human readable error description. May contain information specific to given error instance.
Details about the error instance. The object schema is specific to each error type.
Example
{
"error": {
"id": "badValueString",
"details": {
"key": "name"
},
"description": "Bad value: provided \"name\" must be a string."
}
}Authentication error.
error object Object describing an error.
Object describing an error.
String identifying the error type. Does not change between error instances.
Human readable error description. May contain information specific to given error instance.
Details about the error instance. The object schema is specific to each error type.
Example
{
"error": {
"id": "badValueString",
"details": {
"key": "name"
},
"description": "Bad value: provided \"name\" must be a string."
}
}Authorization error.
error object Object describing an error.
Object describing an error.
String identifying the error type. Does not change between error instances.
Human readable error description. May contain information specific to given error instance.
Details about the error instance. The object schema is specific to each error type.
Example
{
"error": {
"id": "badValueString",
"details": {
"key": "name"
},
"description": "Bad value: provided \"name\" must be a string."
}
}Resource not found.
error object Object describing an error.
Object describing an error.
String identifying the error type. Does not change between error instances.
Human readable error description. May contain information specific to given error instance.
Details about the error instance. The object schema is specific to each error type.
Example
{
"error": {
"id": "badValueString",
"details": {
"key": "name"
},
"description": "Bad value: provided \"name\" must be a string."
}
}Internal server Error.
error object Object describing an error.
Object describing an error.
String identifying the error type. Does not change between error instances.
Human readable error description. May contain information specific to given error instance.
Details about the error instance. The object schema is specific to each error type.
Example
{
"error": {
"id": "badValueString",
"details": {
"key": "name"
},
"description": "Bad value: provided \"name\" must be a string."
}
}