GET /service/api/console/access/gsm/{gsmKey}/addadminstatus
?userEmail={userEmail}
&confirmEmail={confirmEmail}
Retrieves the status of a GSM add admin access request.
The specified e-mail addresses in the query string of the request need to be URL encoded in order to avoid related request errors (e.g. in case an e-mail address contains characters that are not allowed in a query string).
Request Information
URI Parameters
Name | Description | Type | Additional Information |
---|---|---|---|
gsmKey |
The GSM console keycode where a specified user should be added as an API-only super admin. |
string |
Required |
userEmail |
The e-mail address of the user which should be added as an API-only super admin to a GSM console. |
string |
Required |
confirmEmail |
The e-mail address where the confirmation message for approving the access request was sent to. |
string |
Required |
URI Sample(s)
GET
|
https://unityapi.webrootcloudav.com/service/api/console/access/gsm/B04E-05E9-A27A-410C-B798/addadminstatus?userEmail=apiuser@mydomain.com&confirmEmail=admin@mydomain.com
|
Body Parameters
None.
Response Information
Resource Description
The status of a GSM add admin access request.
GSMSuperAdminStatusResponseModelName | Description | Type | Additional Information |
---|---|---|---|
Status |
The current status of the request process. The status can be either one of the following texts:
|
string |
None. |
InitiatedDate |
The date and time when the access request process was initiated. |
date |
None. |
StatusChangeDate |
The date and time when the status of the access request process was last changed. |
date |
None. |
Sample Response
{ "Status": "PendingApproval", "InitiatedDate": "2024-12-18T17:48:51.5223919Z", "StatusChangeDate": "2024-12-21T10:48:51.5223919Z" }
<GSMSuperAdminStatusResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models"> <InitiatedDate>2024-12-18T17:48:51.5223919Z</InitiatedDate> <Status>PendingApproval</Status> <StatusChangeDate>2024-12-21T10:48:51.5223919Z</StatusChangeDate> </GSMSuperAdminStatusResponseModel>