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/EF77-B7CB-2183-4F38-A410/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.
GSMSuperAdminStatusResponseModel| Name | 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": "2025-11-03T15:07:12.7426611Z",
"StatusChangeDate": "2025-11-06T08:07:12.7426611Z"
}
<GSMSuperAdminStatusResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models"> <InitiatedDate>2025-11-03T15:07:12.7426611Z</InitiatedDate> <Status>PendingApproval</Status> <StatusChangeDate>2025-11-06T08:07:12.7426611Z</StatusChangeDate> </GSMSuperAdminStatusResponseModel>