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

The API version to use for this operation.

Responses

Name Type Description
200 OK

ServicesListResult

Successfully retrieved list of the Azure services available for support.

Other Status Codes

ErrorResponse

Error response describing why the operation failed.

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": [
    {
      "id": "/providers/Microsoft.Support/services/service_guid_1",
      "name": "service_guid_1",
      "type": "Microsoft.Support/services",
      "properties": {
        "displayName": "Billing",
        "resourceTypes": []
      }
    },
    {
      "id": "/providers/Microsoft.Support/services/service_guid_2",
      "name": "service_guid_2",
      "type": "Microsoft.Support/services",
      "properties": {
        "displayName": "Service and subscription limits (quotas)",
        "resourceTypes": []
      }
    },
    {
      "id": "/providers/Microsoft.Support/services/service_guid_3",
      "name": "service_guid_3",
      "type": "Microsoft.Support/services",
      "properties": {
        "displayName": "Subscription management",
        "resourceTypes": []
      }
    },
    {
      "id": "/providers/Microsoft.Support/services/service_guid_4",
      "name": "service_guid_4",
      "type": "Microsoft.Support/services",
      "properties": {
        "displayName": "Data Explorer",
        "resourceTypes": [
          "MICROSOFT.KUSTO/CLUSTERS",
          "MICROSOFT.KUSTO/DATABASES"
        ]
      }
    },
    {
      "id": "/providers/Microsoft.Support/services/service_guid_5",
      "name": "service_guid_5",
      "type": "Microsoft.Support/services",
      "properties": {
        "displayName": "Virtual Machine running Windows",
        "resourceTypes": [
          "MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES",
          "MICROSOFT.COMPUTE/VIRTUALMACHINES"
        ]
      }
    },
    {
      "id": "/providers/Microsoft.Support/services/service_guid_6",
      "name": "service_guid_6",
      "type": "Microsoft.Support/services",
      "properties": {
        "displayName": "Virtual Machine running Linux",
        "resourceTypes": [
          "MICROSOFT.CLASSICCOMPUTE/VIRTUALMACHINES",
          "MICROSOFT.COMPUTE/VIRTUALMACHINES"
        ]
      }
    },
    {
      "id": "/providers/Microsoft.Support/services/service_guid_7",
      "name": "service_guid_7",
      "type": "Microsoft.Support/services",
      "properties": {
        "displayName": "Virtual Network",
        "resourceTypes": [
          "MICROSOFT.NETWORK/VIRTUALNETWORKS",
          "MICROSOFT.CLASSICNETWORK/VIRTUALNETWORKS"
        ]
      }
    }
  ]
}

Definitions

Name Description
ErrorAdditionalInfo

The resource management error additional info.

ErrorDetail

The error detail.

ErrorResponse

Error response

Service

Object that represents a Service resource.

ServicesListResult

Collection of Service resources.

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

ErrorAdditionalInfo[]

The error additional info.

code

string

The error code.

details

ErrorDetail[]

The error details.

message

string

The error message.

target

string

The error target.

ErrorResponse

Error response

Name Type Description
error

ErrorDetail

The error object.

Service

Object that represents a Service resource.

Name Type Description
id

string

Id of the resource.

name

string

Name of the resource.

properties.displayName

string

Localized name of the Azure service.

properties.resourceTypes

string[]

ARM Resource types.

type

string

Type of the resource 'Microsoft.Support/services'.

ServicesListResult

Collection of Service resources.

Name Type Description
value

Service[]

List of Service resources.