Microsoft.Support (preview:2019-05-01)

2025/09/12 • 14 new, 14 deleted methods

Operations_List (new)
Description This lists all the available Microsoft Support REST API operations.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Support/operations
{
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
name: string ,
display:
{
description: string ,
operation: string ,
provider: string ,
resource: string ,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
Services_List (new)
Description Lists all the Azure services available for support ticket creation. Here are the Service Ids for **Billing**, **Subscription Management**, and **Service and subscription limits (Quotas)** issues:
Issue typeService Id
Billing'/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc'
Subscription Management'/providers/Microsoft.Support/services/f3dc5421-79ef-1efa-41a5-42bf3cbb52c6'
Quota'/providers/Microsoft.Support/services/06bfd9d3-516b-d5c6-5802-169c800dec89'


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 it's 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.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Support/services
{
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
id: string ,
name: string ,
type: string ,
properties:
{
displayName: string ,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
Services_Get (new)
Description Gets a specific Azure service for support ticket creation.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Support/services/{serviceName}
{
serviceName: string ,
api-version: string ,
}

⚐ Response (200)

{
id: string ,
name: string ,
type: string ,
properties:
{
displayName: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
ProblemClassifications_List (new)
Description Lists all the problem classifications (categories) available for a specific Azure service.

Always use the service and problem classifications obtained programmatically. This practice ensures that you always have the most recent set of service and problem classification Ids.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Support/services/{serviceName}/problemClassifications
{
serviceName: string ,
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
id: string ,
name: string ,
type: string ,
properties:
{
displayName: string ,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
ProblemClassifications_Get (new)
Description Gets the details of a specific problem classification for a specific Azure service.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Support/services/{serviceName}/problemClassifications/{problemClassificationName}
{
serviceName: string ,
problemClassificationName: string ,
api-version: string ,
}

⚐ Response (200)

{
id: string ,
name: string ,
type: string ,
properties:
{
displayName: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
SupportTickets_CheckNameAvailability (new)
Description Check the availability of a resource name. This API should to be used to check the uniqueness of the name for support ticket creation for the selected subscription.
Reference Link ¶

⚼ Request

POST:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/checkNameAvailability
{
checkNameAvailabilityInput:
{
name: string ,
type: enum ,
}
,
subscriptionId: string ,
api-version: string ,
}

⚐ Response (200)

{
nameAvailable: boolean ,
reason: string ,
message: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
SupportTickets_List (new)
Description Lists all the support tickets for an Azure subscription.

You can also filter the support tickets by Status or CreatedDate using the $filter parameter. Output will be a paged result with nextLink, using which you can retrieve the next set of support tickets.

Support ticket data is available for 18 months after ticket creation. If a ticket was created more than 18 months ago, a request for data might cause an error.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets
{
$top: integer ,
$filter: string ,
subscriptionId: string ,
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
id: string ,
name: string ,
type: string ,
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
productionOutage: boolean ,
require24X7Response: boolean ,
contactDetails:
{
firstName: string ,
lastName: string ,
preferredContactMethod: enum ,
primaryEmailAddress: string ,
additionalEmailAddresses:
[
string ,
]
,
phoneNumber: string ,
preferredTimeZone: string ,
country: string ,
preferredSupportLanguage: string ,
}
,
serviceLevelAgreement:
{
startTime: string ,
expirationTime: string ,
slaMinutes: integer ,
}
,
supportEngineer:
{
emailAddress: string ,
}
,
supportPlanType: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
}
,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
SupportTickets_Get (new)
Description Gets details for a specific support ticket in an Azure subscription.

Support ticket data is available for 18 months after ticket creation. If a ticket was created more than 18 months ago, a request for data might cause an error.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}
{
supportTicketName: string ,
subscriptionId: string ,
api-version: string ,
}

⚐ Response (200)

{
id: string ,
name: string ,
type: string ,
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
productionOutage: boolean ,
require24X7Response: boolean ,
contactDetails:
{
firstName: string ,
lastName: string ,
preferredContactMethod: enum ,
primaryEmailAddress: string ,
additionalEmailAddresses:
[
string ,
]
,
phoneNumber: string ,
preferredTimeZone: string ,
country: string ,
preferredSupportLanguage: string ,
}
,
serviceLevelAgreement:
{
startTime: string ,
expirationTime: string ,
slaMinutes: integer ,
}
,
supportEngineer:
{
emailAddress: string ,
}
,
supportPlanType: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
SupportTickets_Update (new)
Description This API allows you to update the severity level or your contact information in the support ticket.

Note: The severity levels cannot be changed if a support ticket is actively being worked upon by an Azure support engineer. In such a case, contact your support engineer to request severity update by adding a new communication using the Communications API.
Reference Link ¶

⚼ Request

PATCH:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}
{
supportTicketName: string ,
updateSupportTicket:
{
severity: enum ,
contactDetails:
{
firstName: string ,
lastName: string ,
preferredContactMethod: enum ,
primaryEmailAddress: string ,
additionalEmailAddresses:
[
string ,
]
,
phoneNumber: string ,
preferredTimeZone: string ,
country: string ,
preferredSupportLanguage: string ,
}
,
}
,
subscriptionId: string ,
api-version: string ,
}

⚐ Response (200)

{
id: string ,
name: string ,
type: string ,
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
productionOutage: boolean ,
require24X7Response: boolean ,
contactDetails:
{
firstName: string ,
lastName: string ,
preferredContactMethod: enum ,
primaryEmailAddress: string ,
additionalEmailAddresses:
[
string ,
]
,
phoneNumber: string ,
preferredTimeZone: string ,
country: string ,
preferredSupportLanguage: string ,
}
,
serviceLevelAgreement:
{
startTime: string ,
expirationTime: string ,
slaMinutes: integer ,
}
,
supportEngineer:
{
emailAddress: string ,
}
,
supportPlanType: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
SupportTickets_Create (new)
Description Creates a new support ticket for Quota increase, Technical, Billing, and Subscription Management issues for the specified subscription.

A paid technical support plan is required to create a support ticket using this API. Learn more

Use the Services API to map the right Service Id to the issue type. For example: For billing tickets set *serviceId* to *'/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc'*.
For Technical issues, the Service id will map to the Azure service you want to raise a support ticket for.

Always call the Services and ProblemClassifications API to get the most recent set of services and problem categories required for support ticket creation.
Reference Link ¶

⚼ Request

PUT:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}
{
supportTicketName: string ,
createSupportTicketParameters:
{
id: string ,
name: string ,
type: string ,
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
productionOutage: boolean ,
require24X7Response: boolean ,
contactDetails:
{
firstName: string ,
lastName: string ,
preferredContactMethod: enum ,
primaryEmailAddress: string ,
additionalEmailAddresses:
[
string ,
]
,
phoneNumber: string ,
preferredTimeZone: string ,
country: string ,
preferredSupportLanguage: string ,
}
,
serviceLevelAgreement:
{
startTime: string ,
expirationTime: string ,
slaMinutes: integer ,
}
,
supportEngineer:
{
emailAddress: string ,
}
,
supportPlanType: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
}
,
}
,
subscriptionId: string ,
api-version: string ,
}

⚐ Response (200)

{
id: string ,
name: string ,
type: string ,
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
productionOutage: boolean ,
require24X7Response: boolean ,
contactDetails:
{
firstName: string ,
lastName: string ,
preferredContactMethod: enum ,
primaryEmailAddress: string ,
additionalEmailAddresses:
[
string ,
]
,
phoneNumber: string ,
preferredTimeZone: string ,
country: string ,
preferredSupportLanguage: string ,
}
,
serviceLevelAgreement:
{
startTime: string ,
expirationTime: string ,
slaMinutes: integer ,
}
,
supportEngineer:
{
emailAddress: string ,
}
,
supportPlanType: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
}
,
}

⚐ Response (202)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
Communications_CheckNameAvailability (new)
Description Check the availability of a resource name. This API should to be used to check the uniqueness of the name for adding a new communication to the support ticket.
Reference Link ¶

⚼ Request

POST:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/checkNameAvailability
{
supportTicketName: string ,
checkNameAvailabilityInput:
{
name: string ,
type: enum ,
}
,
subscriptionId: string ,
api-version: string ,
}

⚐ Response (200)

{
nameAvailable: boolean ,
reason: string ,
message: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
Communications_List (new)
Description Lists all communications (attachments not included) for a support ticket.

You can also filter support ticket communications by CreatedDate�or CommunicationType using the $filter parameter. The only type of communication supported today is Web. Output will be a paged result with nextLink, using which you can retrieve the next set of Communication results.

Support ticket data is available for 18 months after ticket creation. If a ticket was created more than 18 months ago, a request for data might cause an error.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/communications
{
supportTicketName: string ,
$top: integer ,
$filter: string ,
subscriptionId: string ,
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
id: string ,
name: string ,
type: string ,
properties:
{
communicationType: enum ,
communicationDirection: enum ,
sender: string ,
subject: string ,
body: string ,
createdDate: string ,
}
,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
Communications_Get (new)
Description Returns details of a specific communication in a support ticket.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/communications/{communicationName}
{
supportTicketName: string ,
communicationName: string ,
subscriptionId: string ,
api-version: string ,
}

⚐ Response (200)

{
id: string ,
name: string ,
type: string ,
properties:
{
communicationType: enum ,
communicationDirection: enum ,
sender: string ,
subject: string ,
body: string ,
createdDate: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
Communications_Create (new)
Description Adds a new customer communication to an Azure support ticket. Adding attachments are not currently supported via the API.
To add a file to a support ticket, visit the Manage support ticket page in the Azure portal, select the support ticket, and use the file upload control to add a new file.
Reference Link ¶

⚼ Request

PUT:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/communications/{communicationName}
{
supportTicketName: string ,
communicationName: string ,
createCommunicationParameters:
{
id: string ,
name: string ,
type: string ,
properties:
{
communicationType: enum ,
communicationDirection: enum ,
sender: string ,
subject: string ,
body: string ,
createdDate: string ,
}
,
}
,
subscriptionId: string ,
api-version: string ,
}

⚐ Response (200)

{
id: string ,
name: string ,
type: string ,
properties:
{
communicationType: enum ,
communicationDirection: enum ,
sender: string ,
subject: string ,
body: string ,
createdDate: string ,
}
,
}

⚐ Response (202)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
Operations_List (removed)
Description This lists all the available Microsoft Support REST API operations.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Support/operations
{
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
name: string ,
display:
{
description: string ,
operation: string ,
provider: string ,
resource: string ,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
Services_List (removed)
Description Lists all the Azure services available for support ticket creation. Here are the Service Ids for **Billing**, **Subscription Management**, and **Service and subscription limits (Quotas)** issues:
Issue typeService Id
Billing'/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc'
Subscription Management'/providers/Microsoft.Support/services/f3dc5421-79ef-1efa-41a5-42bf3cbb52c6'
Quota'/providers/Microsoft.Support/services/06bfd9d3-516b-d5c6-5802-169c800dec89'


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 it's 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.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Support/services
{
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
id: string ,
name: string ,
type: string ,
properties:
{
displayName: string ,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
Services_Get (removed)
Description Gets a specific Azure service for support ticket creation.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Support/services/{serviceName}
{
serviceName: string ,
api-version: string ,
}

⚐ Response (200)

{
id: string ,
name: string ,
type: string ,
properties:
{
displayName: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
ProblemClassifications_List (removed)
Description Lists all the problem classifications (categories) available for a specific Azure service.

Always use the service and problem classifications obtained programmatically. This practice ensures that you always have the most recent set of service and problem classification Ids.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Support/services/{serviceName}/problemClassifications
{
serviceName: string ,
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
id: string ,
name: string ,
type: string ,
properties:
{
displayName: string ,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
ProblemClassifications_Get (removed)
Description Gets the details of a specific problem classification for a specific Azure service.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Support/services/{serviceName}/problemClassifications/{problemClassificationName}
{
serviceName: string ,
problemClassificationName: string ,
api-version: string ,
}

⚐ Response (200)

{
id: string ,
name: string ,
type: string ,
properties:
{
displayName: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
SupportTickets_CheckNameAvailability (removed)
Description Check the availability of a resource name. This API should to be used to check the uniqueness of the name for support ticket creation for the selected subscription.
Reference Link ¶

⚼ Request

POST:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/checkNameAvailability
{
checkNameAvailabilityInput:
{
name: string ,
type: enum ,
}
,
subscriptionId: string ,
api-version: string ,
}

⚐ Response (200)

{
nameAvailable: boolean ,
reason: string ,
message: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
SupportTickets_List (removed)
Description Lists all the support tickets for an Azure subscription.

You can also filter the support tickets by Status or CreatedDate using the $filter parameter. Output will be a paged result with nextLink, using which you can retrieve the next set of support tickets.

Support ticket data is available for 18 months after ticket creation. If a ticket was created more than 18 months ago, a request for data might cause an error.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets
{
$top: integer ,
$filter: string ,
subscriptionId: string ,
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
id: string ,
name: string ,
type: string ,
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
productionOutage: boolean ,
require24X7Response: boolean ,
contactDetails:
{
firstName: string ,
lastName: string ,
preferredContactMethod: enum ,
primaryEmailAddress: string ,
additionalEmailAddresses:
[
string ,
]
,
phoneNumber: string ,
preferredTimeZone: string ,
country: string ,
preferredSupportLanguage: string ,
}
,
serviceLevelAgreement:
{
startTime: string ,
expirationTime: string ,
slaMinutes: integer ,
}
,
supportEngineer:
{
emailAddress: string ,
}
,
supportPlanType: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
}
,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
SupportTickets_Get (removed)
Description Gets details for a specific support ticket in an Azure subscription.

Support ticket data is available for 18 months after ticket creation. If a ticket was created more than 18 months ago, a request for data might cause an error.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}
{
supportTicketName: string ,
subscriptionId: string ,
api-version: string ,
}

⚐ Response (200)

{
id: string ,
name: string ,
type: string ,
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
productionOutage: boolean ,
require24X7Response: boolean ,
contactDetails:
{
firstName: string ,
lastName: string ,
preferredContactMethod: enum ,
primaryEmailAddress: string ,
additionalEmailAddresses:
[
string ,
]
,
phoneNumber: string ,
preferredTimeZone: string ,
country: string ,
preferredSupportLanguage: string ,
}
,
serviceLevelAgreement:
{
startTime: string ,
expirationTime: string ,
slaMinutes: integer ,
}
,
supportEngineer:
{
emailAddress: string ,
}
,
supportPlanType: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
SupportTickets_Update (removed)
Description This API allows you to update the severity level or your contact information in the support ticket.

Note: The severity levels cannot be changed if a support ticket is actively being worked upon by an Azure support engineer. In such a case, contact your support engineer to request severity update by adding a new communication using the Communications API.
Reference Link ¶

⚼ Request

PATCH:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}
{
supportTicketName: string ,
updateSupportTicket:
{
severity: enum ,
contactDetails:
{
firstName: string ,
lastName: string ,
preferredContactMethod: enum ,
primaryEmailAddress: string ,
additionalEmailAddresses:
[
string ,
]
,
phoneNumber: string ,
preferredTimeZone: string ,
country: string ,
preferredSupportLanguage: string ,
}
,
}
,
subscriptionId: string ,
api-version: string ,
}

⚐ Response (200)

{
id: string ,
name: string ,
type: string ,
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
productionOutage: boolean ,
require24X7Response: boolean ,
contactDetails:
{
firstName: string ,
lastName: string ,
preferredContactMethod: enum ,
primaryEmailAddress: string ,
additionalEmailAddresses:
[
string ,
]
,
phoneNumber: string ,
preferredTimeZone: string ,
country: string ,
preferredSupportLanguage: string ,
}
,
serviceLevelAgreement:
{
startTime: string ,
expirationTime: string ,
slaMinutes: integer ,
}
,
supportEngineer:
{
emailAddress: string ,
}
,
supportPlanType: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
SupportTickets_Create (removed)
Description Creates a new support ticket for Quota increase, Technical, Billing, and Subscription Management issues for the specified subscription.

A paid technical support plan is required to create a support ticket using this API. Learn more

Use the Services API to map the right Service Id to the issue type. For example: For billing tickets set *serviceId* to *'/providers/Microsoft.Support/services/517f2da6-78fd-0498-4e22-ad26996b1dfc'*.
For Technical issues, the Service id will map to the Azure service you want to raise a support ticket for.

Always call the Services and ProblemClassifications API to get the most recent set of services and problem categories required for support ticket creation.
Reference Link ¶

⚼ Request

PUT:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}
{
supportTicketName: string ,
createSupportTicketParameters:
{
id: string ,
name: string ,
type: string ,
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
productionOutage: boolean ,
require24X7Response: boolean ,
contactDetails:
{
firstName: string ,
lastName: string ,
preferredContactMethod: enum ,
primaryEmailAddress: string ,
additionalEmailAddresses:
[
string ,
]
,
phoneNumber: string ,
preferredTimeZone: string ,
country: string ,
preferredSupportLanguage: string ,
}
,
serviceLevelAgreement:
{
startTime: string ,
expirationTime: string ,
slaMinutes: integer ,
}
,
supportEngineer:
{
emailAddress: string ,
}
,
supportPlanType: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
}
,
}
,
subscriptionId: string ,
api-version: string ,
}

⚐ Response (200)

{
id: string ,
name: string ,
type: string ,
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
productionOutage: boolean ,
require24X7Response: boolean ,
contactDetails:
{
firstName: string ,
lastName: string ,
preferredContactMethod: enum ,
primaryEmailAddress: string ,
additionalEmailAddresses:
[
string ,
]
,
phoneNumber: string ,
preferredTimeZone: string ,
country: string ,
preferredSupportLanguage: string ,
}
,
serviceLevelAgreement:
{
startTime: string ,
expirationTime: string ,
slaMinutes: integer ,
}
,
supportEngineer:
{
emailAddress: string ,
}
,
supportPlanType: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
}
,
}

⚐ Response (202)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
Communications_CheckNameAvailability (removed)
Description Check the availability of a resource name. This API should to be used to check the uniqueness of the name for adding a new communication to the support ticket.
Reference Link ¶

⚼ Request

POST:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/checkNameAvailability
{
supportTicketName: string ,
checkNameAvailabilityInput:
{
name: string ,
type: enum ,
}
,
subscriptionId: string ,
api-version: string ,
}

⚐ Response (200)

{
nameAvailable: boolean ,
reason: string ,
message: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
Communications_List (removed)
Description Lists all communications (attachments not included) for a support ticket.

You can also filter support ticket communications by CreatedDate�or CommunicationType using the $filter parameter. The only type of communication supported today is Web. Output will be a paged result with nextLink, using which you can retrieve the next set of Communication results.

Support ticket data is available for 18 months after ticket creation. If a ticket was created more than 18 months ago, a request for data might cause an error.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/communications
{
supportTicketName: string ,
$top: integer ,
$filter: string ,
subscriptionId: string ,
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
id: string ,
name: string ,
type: string ,
properties:
{
communicationType: enum ,
communicationDirection: enum ,
sender: string ,
subject: string ,
body: string ,
createdDate: string ,
}
,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
Communications_Get (removed)
Description Returns details of a specific communication in a support ticket.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/communications/{communicationName}
{
supportTicketName: string ,
communicationName: string ,
subscriptionId: string ,
api-version: string ,
}

⚐ Response (200)

{
id: string ,
name: string ,
type: string ,
properties:
{
communicationType: enum ,
communicationDirection: enum ,
sender: string ,
subject: string ,
body: string ,
createdDate: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}
Communications_Create (removed)
Description Adds a new customer communication to an Azure support ticket. Adding attachments are not currently supported via the API.
To add a file to a support ticket, visit the Manage support ticket page in the Azure portal, select the support ticket, and use the file upload control to add a new file.
Reference Link ¶

⚼ Request

PUT:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}/communications/{communicationName}
{
supportTicketName: string ,
communicationName: string ,
createCommunicationParameters:
{
id: string ,
name: string ,
type: string ,
properties:
{
communicationType: enum ,
communicationDirection: enum ,
sender: string ,
subject: string ,
body: string ,
createdDate: string ,
}
,
}
,
subscriptionId: string ,
api-version: string ,
}

⚐ Response (200)

{
id: string ,
name: string ,
type: string ,
properties:
{
communicationType: enum ,
communicationDirection: enum ,
sender: string ,
subject: string ,
body: string ,
createdDate: string ,
}
,
}

⚐ Response (202)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
{
code: string ,
message: string ,
target: string ,
}
,
]
,
}
,
}