Services - List
Lists all the Azure services available for support ticket creation. For Technical issues, select the Service Id that maps to the Azure service/product as displayed in the Services drop-down list on the Azure portal's New support request page. Always use the service and its corresponding problem classification(s) obtained programmatically for support ticket creation. This practice ensures that you always have the most recent set of service and problem classification Ids.
GET https://management.azure.com/providers/Microsoft.Support/services?api-version=2024-04-01
URI Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
|
api-version
|
query | True |
string minLength: 1 |
The API version to use for this operation. |
Responses
| Name | Type | Description |
|---|---|---|
| 200 OK |
Azure operation completed successfully. |
|
| Other Status Codes |
An unexpected error response. |
Security
azure_auth
Azure Active Directory OAuth2 Flow.
Type:
oauth2
Flow:
implicit
Authorization URL:
https://login.microsoftonline.com/common/oauth2/authorize
Scopes
| Name | Description |
|---|---|
| user_impersonation | impersonate your user account |
Examples
Gets list of services for which a support ticket can be created
Sample request
GET https://management.azure.com/providers/Microsoft.Support/services?api-version=2024-04-01
Sample response
{
"value": [
{
"name": "service_guid_1",
"type": "Microsoft.Support/services",
"id": "/providers/Microsoft.Support/services/service_guid_1",
"properties": {
"displayName": "Billing",
"resourceTypes": []
}
},
{
"name": "service_guid_2",
"type": "Microsoft.Support/services",
"id": "/providers/Microsoft.Support/services/service_guid_2",
"properties": {
"displayName": "Service and subscription limits (quotas)",
"resourceTypes": []
}
},
{
"name": "service_guid_3",
"type": "Microsoft.Support/services",
"id": "/providers/Microsoft.Support/services/service_guid_3",
"properties": {
"displayName": "Subscription management",
"resourceTypes": []
}
},
{
"name": "service_guid_4",
"type": "Microsoft.Support/services",
"id": "/providers/Microsoft.Support/services/service_guid_4",
"properties": {
"displayName": "Data Explorer",
"resourceTypes": [
"MICROSOFT.KUSTO/CLUSTERS",
"MICROSOFT.KUSTO/DATABASES"
]
}
},
{
"name": "service_guid_5",
"type": "Microsoft.Support/services",
"id": "/providers/Microsoft.Support/services/service_guid_5",
"properties": {
"displayName": "Virtual Machine running Windows",
"resourceTypes": [
"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES",
"MICROSOFT.COMPUTE/VIRTUALMACHINES"
]
}
},
{
"name": "service_guid_6",
"type": "Microsoft.Support/services",
"id": "/providers/Microsoft.Support/services/service_guid_6",
"properties": {
"displayName": "Virtual Machine running Linux",
"resourceTypes": [
"MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES",
"MICROSOFT.COMPUTE/VIRTUALMACHINES"
]
}
},
{
"name": "service_guid_7",
"type": "Microsoft.Support/services",
"id": "/providers/Microsoft.Support/services/service_guid_7",
"properties": {
"displayName": "Virtual Network",
"resourceTypes": [
"MICROSOFT.NETWORK/VIRTUALNETWORKS",
"MICROSOFT.CLASSICNETWORK/VIRTUALNETWORKS"
]
}
}
]
}
Definitions
| Name | Description |
|---|---|
|
created |
The type of identity that created the resource. |
|
Error |
The resource management error additional info. |
|
Error |
The error detail. |
|
Error |
Error response |
| Service |
Object that represents a Service resource. |
|
Services |
Collection of Service resources. |
|
system |
Metadata pertaining to creation and last modification of the resource. |
createdByType
The type of identity that created the resource.
| Value | Description |
|---|---|
| User | |
| Application | |
| ManagedIdentity | |
| Key |
ErrorAdditionalInfo
The resource management error additional info.
| Name | Type | Description |
|---|---|---|
| info |
object |
The additional info. |
| type |
string |
The additional info type. |
ErrorDetail
The error detail.
| Name | Type | Description |
|---|---|---|
| additionalInfo |
The error additional info. |
|
| code |
string |
The error code. |
| details |
The error details. |
|
| message |
string |
The error message. |
| target |
string |
The error target. |
ErrorResponse
Error response
| Name | Type | Description |
|---|---|---|
| error |
The error object. |
Service
Object that represents a Service resource.
| Name | Type | Description |
|---|---|---|
| id |
string (arm-id) |
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
| name |
string |
The name of the resource |
| properties.displayName |
string |
Localized name of the Azure service. |
| properties.resourceTypes |
string[] |
ARM Resource types. |
| systemData |
Azure Resource Manager metadata containing createdBy and modifiedBy information. |
|
| type |
string |
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
ServicesListResult
Collection of Service resources.
| Name | Type | Description |
|---|---|---|
| nextLink |
string |
The link to the next page of items |
| value |
Service[] |
List of Service resources. |
systemData
Metadata pertaining to creation and last modification of the resource.
| Name | Type | Description |
|---|---|---|
| createdAt |
string (date-time) |
The timestamp of resource creation (UTC). |
| createdBy |
string |
The identity that created the resource. |
| createdByType |
The type of identity that created the resource. |
|
| lastModifiedAt |
string (date-time) |
The timestamp of resource last modification (UTC) |
| lastModifiedBy |
string |
The identity that last modified the resource. |
| lastModifiedByType |
The type of identity that last modified the resource. |