Microsoft.Support (stable:2024-04-01)

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

SupportTicketsNoSubscription_CheckNameAvailability (new)
Description Check the availability of a resource name. This API should be used to check the uniqueness of the name for support ticket creation for the selected subscription.
Reference Link ¶

⚼ Request

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

⚐ Response (200)

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

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
FileWorkspacesNoSubscription_Get (new)
Description Gets details for a specific file workspace.
Reference Link ¶

⚼ Request

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

⚐ Response (200)

{
properties:
{
createdOn: string ,
expirationTime: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
FileWorkspacesNoSubscription_Create (new)
Description Creates a new file workspace.
Reference Link ¶

⚼ Request

PUT:  /providers/Microsoft.Support/fileWorkspaces/{fileWorkspaceName}
{
api-version: string ,
fileWorkspaceName: string ,
}

⚐ Response (201)

{
properties:
{
createdOn: string ,
expirationTime: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
FilesNoSubscription_List (new)
Description Lists all the Files information under a workspace for an Azure subscription.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Support/fileWorkspaces/{fileWorkspaceName}/files
{
api-version: string ,
fileWorkspaceName: string ,
}

⚐ Response (200)

{
nextLink: string ,
value:
[
{
properties:
{
createdOn: string ,
chunkSize: integer ,
fileSize: integer ,
numberOfChunks: integer ,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
FilesNoSubscription_Get (new)
Description Returns details of a specific file in a work space.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Support/fileWorkspaces/{fileWorkspaceName}/files/{fileName}
{
api-version: string ,
fileWorkspaceName: string ,
fileName: string ,
}

⚐ Response (200)

{
properties:
{
createdOn: string ,
chunkSize: integer ,
fileSize: integer ,
numberOfChunks: integer ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
FilesNoSubscription_Create (new)
Description Creates a new file under a workspace.
Reference Link ¶

⚼ Request

PUT:  /providers/Microsoft.Support/fileWorkspaces/{fileWorkspaceName}/files/{fileName}
{
api-version: string ,
fileWorkspaceName: string ,
fileName: string ,
createFileParameters:
{
properties:
{
createdOn: string ,
chunkSize: integer ,
fileSize: integer ,
numberOfChunks: integer ,
}
,
}
,
}

⚐ Response (201)

{
properties:
{
createdOn: string ,
chunkSize: integer ,
fileSize: integer ,
numberOfChunks: integer ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
FilesNoSubscription_Upload (new)
Description This API allows you to upload content to a file
Reference Link ¶

⚼ Request

POST:  /providers/Microsoft.Support/fileWorkspaces/{fileWorkspaceName}/files/{fileName}/upload
{
api-version: string ,
fileWorkspaceName: string ,
fileName: string ,
uploadFile:
{
content: string ,
chunkIndex: integer ,
}
,
}

⚐ Response (204)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Operations_List (new)
Description List the operations for the provider
Reference Link ¶

⚼ Request

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

⚐ Response (200)

{
value:
[
{
name: string ,
isDataAction: boolean ,
display:
{
provider: string ,
resource: string ,
operation: string ,
description: string ,
}
,
origin: enum ,
actionType: enum ,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Services_List (new)
Description 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](https://portal.azure.com/#blade/Microsoft_Azure_Support/HelpAndSupportBlade/overview) 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.
Reference Link ¶

⚼ Request

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

⚐ Response (200)

{
nextLink: string ,
value:
[
{
properties:
{
displayName: string ,
resourceTypes:
[
string ,
]
,
}
,
}
,
]
,
}

⚐ Response (default)

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

⚼ Request

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

⚐ Response (200)

{
properties:
{
displayName: string ,
resourceTypes:
[
string ,
]
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
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
{
api-version: string ,
serviceName: string ,
}

⚐ Response (200)

{
nextLink: string ,
value:
[
{
properties:
{
displayName: string ,
secondaryConsentEnabled:
[
{
description: string ,
type: string ,
}
,
]
,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
ProblemClassifications_Get (new)
Description Get problem classification details for a specific Azure service.
Reference Link ¶

⚼ Request

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

⚐ Response (200)

{
properties:
{
displayName: string ,
secondaryConsentEnabled:
[
{
description: string ,
type: string ,
}
,
]
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
SupportTicketsNoSubscription_List (new)
Description Lists all the support tickets.

You can also filter the support tickets by Status, CreatedDate, , ServiceId, and ProblemClassificationId 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:  /providers/Microsoft.Support/supportTickets
{
api-version: string ,
$top: integer ,
$filter: string ,
}

⚐ Response (200)

{
nextLink: string ,
value:
[
{
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
require24X7Response: boolean ,
advancedDiagnosticConsent: enum ,
problemScopingQuestions: string ,
supportPlanId: string ,
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 ,
supportPlanDisplayName: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
fileWorkspaceName: string ,
isTemporaryTicket: enum ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
SupportTicketsNoSubscription_Get (new)
Description Gets details for a specific support ticket. 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:  /providers/Microsoft.Support/supportTickets/{supportTicketName}
{
api-version: string ,
supportTicketName: string ,
}

⚐ Response (200)

{
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
require24X7Response: boolean ,
advancedDiagnosticConsent: enum ,
problemScopingQuestions: string ,
supportPlanId: string ,
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 ,
supportPlanDisplayName: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
fileWorkspaceName: string ,
isTemporaryTicket: enum ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
SupportTicketsNoSubscription_Create (new)
Description Creates a new support ticket for Billing, and Subscription Management issues. Learn the [prerequisites](https://aka.ms/supportAPI) required to create a support ticket.

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

Adding attachments is not currently supported via the API. To add a file to an existing support ticket, visit the [Manage support ticket](https://portal.azure.com/#blade/Microsoft_Azure_Support/HelpAndSupportBlade/managesupportrequest) page in the Azure portal, select the support ticket, and use the file upload control to add a new file.

Providing consent to share diagnostic information with Azure support is currently not supported via the API. The Azure support engineer working on your ticket will reach out to you for consent if your issue requires gathering diagnostic information from your Azure resources.

Reference Link ¶

⚼ Request

PUT:  /providers/Microsoft.Support/supportTickets/{supportTicketName}
{
api-version: string ,
supportTicketName: string ,
createSupportTicketParameters:
{
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
require24X7Response: boolean ,
advancedDiagnosticConsent: enum ,
problemScopingQuestions: string ,
supportPlanId: string ,
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 ,
supportPlanDisplayName: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
fileWorkspaceName: string ,
isTemporaryTicket: enum ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}
,
}

⚐ Response (200)

{
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
require24X7Response: boolean ,
advancedDiagnosticConsent: enum ,
problemScopingQuestions: string ,
supportPlanId: string ,
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 ,
supportPlanDisplayName: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
fileWorkspaceName: string ,
isTemporaryTicket: enum ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}

⚐ Response (202)

{
location: string ,
retry-after: integer ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
SupportTicketsNoSubscription_Update (new)
Description This API allows you to update the severity level, ticket status, and 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:  /providers/Microsoft.Support/supportTickets/{supportTicketName}
{
api-version: string ,
supportTicketName: string ,
updateSupportTicket:
{
severity: enum ,
status: enum ,
contactDetails:
{
firstName: string ,
lastName: string ,
preferredContactMethod: enum ,
primaryEmailAddress: string ,
additionalEmailAddresses:
[
string ,
]
,
phoneNumber: string ,
preferredTimeZone: string ,
country: string ,
preferredSupportLanguage: string ,
}
,
advancedDiagnosticConsent: enum ,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}

⚐ Response (200)

{
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
require24X7Response: boolean ,
advancedDiagnosticConsent: enum ,
problemScopingQuestions: string ,
supportPlanId: string ,
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 ,
supportPlanDisplayName: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
fileWorkspaceName: string ,
isTemporaryTicket: enum ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
ChatTranscriptsNoSubscription_List (new)
Description Lists all chat transcripts for a support ticket
Reference Link ¶

⚼ Request

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

⚐ Response (200)

{
nextLink: string ,
value:
[
{
properties:
{
messages:
[
{
contentType: string ,
communicationDirection: enum ,
sender: string ,
body: string ,
createdDate: string ,
}
,
]
,
startTime: string ,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
ChatTranscriptsNoSubscription_Get (new)
Description Returns chatTranscript details for a no subscription support ticket.
Reference Link ¶

⚼ Request

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

⚐ Response (200)

{
properties:
{
messages:
[
{
contentType: string ,
communicationDirection: enum ,
sender: string ,
body: string ,
createdDate: string ,
}
,
]
,
startTime: string ,
}
,
}

⚐ Response (default)

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

⚼ Request

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

⚐ Response (200)

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

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
CommunicationsNoSubscription_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:  /providers/Microsoft.Support/supportTickets/{supportTicketName}/communications
{
api-version: string ,
supportTicketName: string ,
$top: integer ,
$filter: string ,
}

⚐ Response (200)

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

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
CommunicationsNoSubscription_Get (new)
Description Returns communication details for a support ticket.
Reference Link ¶

⚼ Request

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

⚐ Response (200)

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

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
CommunicationsNoSubscription_Create (new)
Description Adds a new customer communication to an Azure support ticket.
Reference Link ¶

⚼ Request

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

⚐ Response (200)

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

⚐ Response (202)

{
location: string ,
retry-after: integer ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
SupportTickets_CheckNameAvailability (new)
Description Check the availability of a resource name. This API should 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
{
api-version: string ,
subscriptionId: string ,
checkNameAvailabilityInput:
{
name: string ,
type: enum ,
}
,
}

⚐ Response (200)

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

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
FileWorkspaces_Get (new)
Description Gets details for a specific file workspace in an Azure subscription.
Reference Link ¶

⚼ Request

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

⚐ Response (200)

{
properties:
{
createdOn: string ,
expirationTime: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
FileWorkspaces_Create (new)
Description Creates a new file workspace for the specified subscription.
Reference Link ¶

⚼ Request

PUT:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/fileWorkspaces/{fileWorkspaceName}
{
api-version: string ,
subscriptionId: string ,
fileWorkspaceName: string ,
}

⚐ Response (201)

{
properties:
{
createdOn: string ,
expirationTime: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Files_List (new)
Description Lists all the Files information under a workspace for an Azure subscription.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/fileWorkspaces/{fileWorkspaceName}/files
{
api-version: string ,
subscriptionId: string ,
fileWorkspaceName: string ,
}

⚐ Response (200)

{
nextLink: string ,
value:
[
{
properties:
{
createdOn: string ,
chunkSize: integer ,
fileSize: integer ,
numberOfChunks: integer ,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Files_Get (new)
Description Returns details of a specific file in a work space.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/fileWorkspaces/{fileWorkspaceName}/files/{fileName}
{
api-version: string ,
subscriptionId: string ,
fileWorkspaceName: string ,
fileName: string ,
}

⚐ Response (200)

{
properties:
{
createdOn: string ,
chunkSize: integer ,
fileSize: integer ,
numberOfChunks: integer ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Files_Create (new)
Description Creates a new file under a workspace for the specified subscription.
Reference Link ¶

⚼ Request

PUT:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/fileWorkspaces/{fileWorkspaceName}/files/{fileName}
{
api-version: string ,
subscriptionId: string ,
fileWorkspaceName: string ,
fileName: string ,
createFileParameters:
{
properties:
{
createdOn: string ,
chunkSize: integer ,
fileSize: integer ,
numberOfChunks: integer ,
}
,
}
,
}

⚐ Response (201)

{
properties:
{
createdOn: string ,
chunkSize: integer ,
fileSize: integer ,
numberOfChunks: integer ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Files_Upload (new)
Description This API allows you to upload content to a file
Reference Link ¶

⚼ Request

POST:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/fileWorkspaces/{fileWorkspaceName}/files/{fileName}/upload
{
api-version: string ,
subscriptionId: string ,
fileWorkspaceName: string ,
fileName: string ,
uploadFile:
{
content: string ,
chunkIndex: integer ,
}
,
}

⚐ Response (204)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
SupportTickets_List (new)
Description Lists all the support tickets for an Azure subscription. You can also filter the support tickets by _Status_, _CreatedDate_, _ServiceId_, and _ProblemClassificationId_ 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
{
api-version: string ,
subscriptionId: string ,
$top: integer ,
$filter: string ,
}

⚐ Response (200)

{
nextLink: string ,
value:
[
{
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
require24X7Response: boolean ,
advancedDiagnosticConsent: enum ,
problemScopingQuestions: string ,
supportPlanId: string ,
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 ,
supportPlanDisplayName: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
fileWorkspaceName: string ,
isTemporaryTicket: enum ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
SupportTickets_Get (new)
Description Get ticket details for 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}
{
api-version: string ,
subscriptionId: string ,
supportTicketName: string ,
}

⚐ Response (200)

{
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
require24X7Response: boolean ,
advancedDiagnosticConsent: enum ,
problemScopingQuestions: string ,
supportPlanId: string ,
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 ,
supportPlanDisplayName: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
fileWorkspaceName: string ,
isTemporaryTicket: enum ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
SupportTickets_Create (new)
Description Creates a new support ticket for Subscription and Service limits (Quota), Technical, Billing, and Subscription Management issues for the specified subscription. Learn the [prerequisites](https://aka.ms/supportAPI) required to create a support ticket.

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

Adding attachments is not currently supported via the API. To add a file to an existing support ticket, visit the [Manage support ticket](https://portal.azure.com/#blade/Microsoft_Azure_Support/HelpAndSupportBlade/managesupportrequest) page in the Azure portal, select the support ticket, and use the file upload control to add a new file.

Providing consent to share diagnostic information with Azure support is currently not supported via the API. The Azure support engineer working on your ticket will reach out to you for consent if your issue requires gathering diagnostic information from your Azure resources.

**Creating a support ticket for on-behalf-of**: Include _x-ms-authorization-auxiliary_ header to provide an auxiliary token as per [documentation](https://docs.microsoft.com/azure/azure-resource-manager/management/authenticate-multi-tenant). The primary token will be from the tenant for whom a support ticket is being raised against the subscription, i.e. Cloud solution provider (CSP) customer tenant. The auxiliary token will be from the Cloud solution provider (CSP) partner tenant.
Reference Link ¶

⚼ Request

PUT:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}
{
api-version: string ,
subscriptionId: string ,
supportTicketName: string ,
createSupportTicketParameters:
{
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
require24X7Response: boolean ,
advancedDiagnosticConsent: enum ,
problemScopingQuestions: string ,
supportPlanId: string ,
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 ,
supportPlanDisplayName: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
fileWorkspaceName: string ,
isTemporaryTicket: enum ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}
,
}

⚐ Response (200)

{
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
require24X7Response: boolean ,
advancedDiagnosticConsent: enum ,
problemScopingQuestions: string ,
supportPlanId: string ,
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 ,
supportPlanDisplayName: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
fileWorkspaceName: string ,
isTemporaryTicket: enum ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}

⚐ Response (202)

{
location: string ,
retry-after: integer ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
SupportTickets_Update (new)
Description This API allows you to update the severity level, ticket status, advanced diagnostic consent and 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}
{
api-version: string ,
subscriptionId: string ,
supportTicketName: string ,
updateSupportTicket:
{
severity: enum ,
status: enum ,
contactDetails:
{
firstName: string ,
lastName: string ,
preferredContactMethod: enum ,
primaryEmailAddress: string ,
additionalEmailAddresses:
[
string ,
]
,
phoneNumber: string ,
preferredTimeZone: string ,
country: string ,
preferredSupportLanguage: string ,
}
,
advancedDiagnosticConsent: enum ,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}

⚐ Response (200)

{
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
require24X7Response: boolean ,
advancedDiagnosticConsent: enum ,
problemScopingQuestions: string ,
supportPlanId: string ,
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 ,
supportPlanDisplayName: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
fileWorkspaceName: string ,
isTemporaryTicket: enum ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
ChatTranscripts_List (new)
Description Lists all chat transcripts for a support ticket under subscription
Reference Link ¶

⚼ Request

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

⚐ Response (200)

{
nextLink: string ,
value:
[
{
properties:
{
messages:
[
{
contentType: string ,
communicationDirection: enum ,
sender: string ,
body: string ,
createdDate: string ,
}
,
]
,
startTime: string ,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
ChatTranscripts_Get (new)
Description Returns chatTranscript details for a support ticket under a subscription.
Reference Link ¶

⚼ Request

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

⚐ Response (200)

{
properties:
{
messages:
[
{
contentType: string ,
communicationDirection: enum ,
sender: string ,
body: string ,
createdDate: string ,
}
,
]
,
startTime: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Communications_CheckNameAvailability (new)
Description Check the availability of a resource name. This API should 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
{
api-version: string ,
subscriptionId: string ,
supportTicketName: string ,
checkNameAvailabilityInput:
{
name: string ,
type: enum ,
}
,
}

⚐ Response (200)

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

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
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
{
api-version: string ,
subscriptionId: string ,
supportTicketName: string ,
$top: integer ,
$filter: string ,
}

⚐ Response (200)

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

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Communications_Get (new)
Description Returns communication details for a support ticket.
Reference Link ¶

⚼ Request

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

⚐ Response (200)

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

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Communications_Create (new)
Description Adds a new customer communication to an Azure support ticket.
Reference Link ¶

⚼ Request

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

⚐ Response (200)

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

⚐ Response (202)

{
location: string ,
retry-after: integer ,
}

⚐ Response (default)

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

⚼ Request

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

⚐ Response (200)

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

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
FileWorkspacesNoSubscription_Get (removed)
Description Gets details for a specific file workspace.
Reference Link ¶

⚼ Request

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

⚐ Response (200)

{
properties:
{
createdOn: string ,
expirationTime: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
FileWorkspacesNoSubscription_Create (removed)
Description Creates a new file workspace.
Reference Link ¶

⚼ Request

PUT:  /providers/Microsoft.Support/fileWorkspaces/{fileWorkspaceName}
{
api-version: string ,
fileWorkspaceName: string ,
}

⚐ Response (201)

{
properties:
{
createdOn: string ,
expirationTime: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
FilesNoSubscription_List (removed)
Description Lists all the Files information under a workspace for an Azure subscription.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Support/fileWorkspaces/{fileWorkspaceName}/files
{
api-version: string ,
fileWorkspaceName: string ,
}

⚐ Response (200)

{
nextLink: string ,
value:
[
{
properties:
{
createdOn: string ,
chunkSize: integer ,
fileSize: integer ,
numberOfChunks: integer ,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
FilesNoSubscription_Get (removed)
Description Returns details of a specific file in a work space.
Reference Link ¶

⚼ Request

GET:  /providers/Microsoft.Support/fileWorkspaces/{fileWorkspaceName}/files/{fileName}
{
api-version: string ,
fileWorkspaceName: string ,
fileName: string ,
}

⚐ Response (200)

{
properties:
{
createdOn: string ,
chunkSize: integer ,
fileSize: integer ,
numberOfChunks: integer ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
FilesNoSubscription_Create (removed)
Description Creates a new file under a workspace.
Reference Link ¶

⚼ Request

PUT:  /providers/Microsoft.Support/fileWorkspaces/{fileWorkspaceName}/files/{fileName}
{
api-version: string ,
fileWorkspaceName: string ,
fileName: string ,
createFileParameters:
{
properties:
{
createdOn: string ,
chunkSize: integer ,
fileSize: integer ,
numberOfChunks: integer ,
}
,
}
,
}

⚐ Response (201)

{
properties:
{
createdOn: string ,
chunkSize: integer ,
fileSize: integer ,
numberOfChunks: integer ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
FilesNoSubscription_Upload (removed)
Description This API allows you to upload content to a file
Reference Link ¶

⚼ Request

POST:  /providers/Microsoft.Support/fileWorkspaces/{fileWorkspaceName}/files/{fileName}/upload
{
api-version: string ,
fileWorkspaceName: string ,
fileName: string ,
uploadFile:
{
content: string ,
chunkIndex: integer ,
}
,
}

⚐ Response (204)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Operations_List (removed)
Description List the operations for the provider
Reference Link ¶

⚼ Request

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

⚐ Response (200)

{
value:
[
{
name: string ,
isDataAction: boolean ,
display:
{
provider: string ,
resource: string ,
operation: string ,
description: string ,
}
,
origin: enum ,
actionType: enum ,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Services_List (removed)
Description 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](https://portal.azure.com/#blade/Microsoft_Azure_Support/HelpAndSupportBlade/overview) 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.
Reference Link ¶

⚼ Request

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

⚐ Response (200)

{
nextLink: string ,
value:
[
{
properties:
{
displayName: string ,
resourceTypes:
[
string ,
]
,
}
,
}
,
]
,
}

⚐ Response (default)

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

⚼ Request

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

⚐ Response (200)

{
properties:
{
displayName: string ,
resourceTypes:
[
string ,
]
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
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
{
api-version: string ,
serviceName: string ,
}

⚐ Response (200)

{
nextLink: string ,
value:
[
{
properties:
{
displayName: string ,
secondaryConsentEnabled:
[
{
description: string ,
type: string ,
}
,
]
,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
ProblemClassifications_Get (removed)
Description Get problem classification details for a specific Azure service.
Reference Link ¶

⚼ Request

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

⚐ Response (200)

{
properties:
{
displayName: string ,
secondaryConsentEnabled:
[
{
description: string ,
type: string ,
}
,
]
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
SupportTicketsNoSubscription_List (removed)
Description Lists all the support tickets.

You can also filter the support tickets by Status, CreatedDate, , ServiceId, and ProblemClassificationId 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:  /providers/Microsoft.Support/supportTickets
{
api-version: string ,
$top: integer ,
$filter: string ,
}

⚐ Response (200)

{
nextLink: string ,
value:
[
{
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
require24X7Response: boolean ,
advancedDiagnosticConsent: enum ,
problemScopingQuestions: string ,
supportPlanId: string ,
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 ,
supportPlanDisplayName: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
fileWorkspaceName: string ,
isTemporaryTicket: enum ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
SupportTicketsNoSubscription_Get (removed)
Description Gets details for a specific support ticket. 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:  /providers/Microsoft.Support/supportTickets/{supportTicketName}
{
api-version: string ,
supportTicketName: string ,
}

⚐ Response (200)

{
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
require24X7Response: boolean ,
advancedDiagnosticConsent: enum ,
problemScopingQuestions: string ,
supportPlanId: string ,
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 ,
supportPlanDisplayName: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
fileWorkspaceName: string ,
isTemporaryTicket: enum ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
SupportTicketsNoSubscription_Create (removed)
Description Creates a new support ticket for Billing, and Subscription Management issues. Learn the [prerequisites](https://aka.ms/supportAPI) required to create a support ticket.

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

Adding attachments is not currently supported via the API. To add a file to an existing support ticket, visit the [Manage support ticket](https://portal.azure.com/#blade/Microsoft_Azure_Support/HelpAndSupportBlade/managesupportrequest) page in the Azure portal, select the support ticket, and use the file upload control to add a new file.

Providing consent to share diagnostic information with Azure support is currently not supported via the API. The Azure support engineer working on your ticket will reach out to you for consent if your issue requires gathering diagnostic information from your Azure resources.

Reference Link ¶

⚼ Request

PUT:  /providers/Microsoft.Support/supportTickets/{supportTicketName}
{
api-version: string ,
supportTicketName: string ,
createSupportTicketParameters:
{
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
require24X7Response: boolean ,
advancedDiagnosticConsent: enum ,
problemScopingQuestions: string ,
supportPlanId: string ,
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 ,
supportPlanDisplayName: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
fileWorkspaceName: string ,
isTemporaryTicket: enum ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}
,
}

⚐ Response (200)

{
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
require24X7Response: boolean ,
advancedDiagnosticConsent: enum ,
problemScopingQuestions: string ,
supportPlanId: string ,
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 ,
supportPlanDisplayName: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
fileWorkspaceName: string ,
isTemporaryTicket: enum ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}

⚐ Response (202)

{
location: string ,
retry-after: integer ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
SupportTicketsNoSubscription_Update (removed)
Description This API allows you to update the severity level, ticket status, and 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:  /providers/Microsoft.Support/supportTickets/{supportTicketName}
{
api-version: string ,
supportTicketName: string ,
updateSupportTicket:
{
severity: enum ,
status: enum ,
contactDetails:
{
firstName: string ,
lastName: string ,
preferredContactMethod: enum ,
primaryEmailAddress: string ,
additionalEmailAddresses:
[
string ,
]
,
phoneNumber: string ,
preferredTimeZone: string ,
country: string ,
preferredSupportLanguage: string ,
}
,
advancedDiagnosticConsent: enum ,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}

⚐ Response (200)

{
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
require24X7Response: boolean ,
advancedDiagnosticConsent: enum ,
problemScopingQuestions: string ,
supportPlanId: string ,
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 ,
supportPlanDisplayName: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
fileWorkspaceName: string ,
isTemporaryTicket: enum ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
ChatTranscriptsNoSubscription_List (removed)
Description Lists all chat transcripts for a support ticket
Reference Link ¶

⚼ Request

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

⚐ Response (200)

{
nextLink: string ,
value:
[
{
properties:
{
messages:
[
{
contentType: string ,
communicationDirection: enum ,
sender: string ,
body: string ,
createdDate: string ,
}
,
]
,
startTime: string ,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
ChatTranscriptsNoSubscription_Get (removed)
Description Returns chatTranscript details for a no subscription support ticket.
Reference Link ¶

⚼ Request

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

⚐ Response (200)

{
properties:
{
messages:
[
{
contentType: string ,
communicationDirection: enum ,
sender: string ,
body: string ,
createdDate: string ,
}
,
]
,
startTime: string ,
}
,
}

⚐ Response (default)

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

⚼ Request

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

⚐ Response (200)

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

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
CommunicationsNoSubscription_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:  /providers/Microsoft.Support/supportTickets/{supportTicketName}/communications
{
api-version: string ,
supportTicketName: string ,
$top: integer ,
$filter: string ,
}

⚐ Response (200)

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

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
CommunicationsNoSubscription_Get (removed)
Description Returns communication details for a support ticket.
Reference Link ¶

⚼ Request

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

⚐ Response (200)

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

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
CommunicationsNoSubscription_Create (removed)
Description Adds a new customer communication to an Azure support ticket.
Reference Link ¶

⚼ Request

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

⚐ Response (200)

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

⚐ Response (202)

{
location: string ,
retry-after: integer ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
SupportTickets_CheckNameAvailability (removed)
Description Check the availability of a resource name. This API should 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
{
api-version: string ,
subscriptionId: string ,
checkNameAvailabilityInput:
{
name: string ,
type: enum ,
}
,
}

⚐ Response (200)

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

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
FileWorkspaces_Get (removed)
Description Gets details for a specific file workspace in an Azure subscription.
Reference Link ¶

⚼ Request

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

⚐ Response (200)

{
properties:
{
createdOn: string ,
expirationTime: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
FileWorkspaces_Create (removed)
Description Creates a new file workspace for the specified subscription.
Reference Link ¶

⚼ Request

PUT:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/fileWorkspaces/{fileWorkspaceName}
{
api-version: string ,
subscriptionId: string ,
fileWorkspaceName: string ,
}

⚐ Response (201)

{
properties:
{
createdOn: string ,
expirationTime: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Files_List (removed)
Description Lists all the Files information under a workspace for an Azure subscription.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/fileWorkspaces/{fileWorkspaceName}/files
{
api-version: string ,
subscriptionId: string ,
fileWorkspaceName: string ,
}

⚐ Response (200)

{
nextLink: string ,
value:
[
{
properties:
{
createdOn: string ,
chunkSize: integer ,
fileSize: integer ,
numberOfChunks: integer ,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Files_Get (removed)
Description Returns details of a specific file in a work space.
Reference Link ¶

⚼ Request

GET:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/fileWorkspaces/{fileWorkspaceName}/files/{fileName}
{
api-version: string ,
subscriptionId: string ,
fileWorkspaceName: string ,
fileName: string ,
}

⚐ Response (200)

{
properties:
{
createdOn: string ,
chunkSize: integer ,
fileSize: integer ,
numberOfChunks: integer ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Files_Create (removed)
Description Creates a new file under a workspace for the specified subscription.
Reference Link ¶

⚼ Request

PUT:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/fileWorkspaces/{fileWorkspaceName}/files/{fileName}
{
api-version: string ,
subscriptionId: string ,
fileWorkspaceName: string ,
fileName: string ,
createFileParameters:
{
properties:
{
createdOn: string ,
chunkSize: integer ,
fileSize: integer ,
numberOfChunks: integer ,
}
,
}
,
}

⚐ Response (201)

{
properties:
{
createdOn: string ,
chunkSize: integer ,
fileSize: integer ,
numberOfChunks: integer ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Files_Upload (removed)
Description This API allows you to upload content to a file
Reference Link ¶

⚼ Request

POST:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/fileWorkspaces/{fileWorkspaceName}/files/{fileName}/upload
{
api-version: string ,
subscriptionId: string ,
fileWorkspaceName: string ,
fileName: string ,
uploadFile:
{
content: string ,
chunkIndex: integer ,
}
,
}

⚐ Response (204)

{}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
SupportTickets_List (removed)
Description Lists all the support tickets for an Azure subscription. You can also filter the support tickets by _Status_, _CreatedDate_, _ServiceId_, and _ProblemClassificationId_ 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
{
api-version: string ,
subscriptionId: string ,
$top: integer ,
$filter: string ,
}

⚐ Response (200)

{
nextLink: string ,
value:
[
{
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
require24X7Response: boolean ,
advancedDiagnosticConsent: enum ,
problemScopingQuestions: string ,
supportPlanId: string ,
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 ,
supportPlanDisplayName: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
fileWorkspaceName: string ,
isTemporaryTicket: enum ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
SupportTickets_Get (removed)
Description Get ticket details for 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}
{
api-version: string ,
subscriptionId: string ,
supportTicketName: string ,
}

⚐ Response (200)

{
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
require24X7Response: boolean ,
advancedDiagnosticConsent: enum ,
problemScopingQuestions: string ,
supportPlanId: string ,
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 ,
supportPlanDisplayName: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
fileWorkspaceName: string ,
isTemporaryTicket: enum ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
SupportTickets_Create (removed)
Description Creates a new support ticket for Subscription and Service limits (Quota), Technical, Billing, and Subscription Management issues for the specified subscription. Learn the [prerequisites](https://aka.ms/supportAPI) required to create a support ticket.

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

Adding attachments is not currently supported via the API. To add a file to an existing support ticket, visit the [Manage support ticket](https://portal.azure.com/#blade/Microsoft_Azure_Support/HelpAndSupportBlade/managesupportrequest) page in the Azure portal, select the support ticket, and use the file upload control to add a new file.

Providing consent to share diagnostic information with Azure support is currently not supported via the API. The Azure support engineer working on your ticket will reach out to you for consent if your issue requires gathering diagnostic information from your Azure resources.

**Creating a support ticket for on-behalf-of**: Include _x-ms-authorization-auxiliary_ header to provide an auxiliary token as per [documentation](https://docs.microsoft.com/azure/azure-resource-manager/management/authenticate-multi-tenant). The primary token will be from the tenant for whom a support ticket is being raised against the subscription, i.e. Cloud solution provider (CSP) customer tenant. The auxiliary token will be from the Cloud solution provider (CSP) partner tenant.
Reference Link ¶

⚼ Request

PUT:  /subscriptions/{subscriptionId}/providers/Microsoft.Support/supportTickets/{supportTicketName}
{
api-version: string ,
subscriptionId: string ,
supportTicketName: string ,
createSupportTicketParameters:
{
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
require24X7Response: boolean ,
advancedDiagnosticConsent: enum ,
problemScopingQuestions: string ,
supportPlanId: string ,
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 ,
supportPlanDisplayName: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
fileWorkspaceName: string ,
isTemporaryTicket: enum ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}
,
}

⚐ Response (200)

{
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
require24X7Response: boolean ,
advancedDiagnosticConsent: enum ,
problemScopingQuestions: string ,
supportPlanId: string ,
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 ,
supportPlanDisplayName: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
fileWorkspaceName: string ,
isTemporaryTicket: enum ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}

⚐ Response (202)

{
location: string ,
retry-after: integer ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
SupportTickets_Update (removed)
Description This API allows you to update the severity level, ticket status, advanced diagnostic consent and 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}
{
api-version: string ,
subscriptionId: string ,
supportTicketName: string ,
updateSupportTicket:
{
severity: enum ,
status: enum ,
contactDetails:
{
firstName: string ,
lastName: string ,
preferredContactMethod: enum ,
primaryEmailAddress: string ,
additionalEmailAddresses:
[
string ,
]
,
phoneNumber: string ,
preferredTimeZone: string ,
country: string ,
preferredSupportLanguage: string ,
}
,
advancedDiagnosticConsent: enum ,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}

⚐ Response (200)

{
properties:
{
supportTicketId: string ,
description: string ,
problemClassificationId: string ,
problemClassificationDisplayName: string ,
severity: enum ,
enrollmentId: string ,
require24X7Response: boolean ,
advancedDiagnosticConsent: enum ,
problemScopingQuestions: string ,
supportPlanId: string ,
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 ,
supportPlanDisplayName: string ,
title: string ,
problemStartTime: string ,
serviceId: string ,
serviceDisplayName: string ,
status: string ,
createdDate: string ,
modifiedDate: string ,
fileWorkspaceName: string ,
isTemporaryTicket: enum ,
technicalTicketDetails:
{
resourceId: string ,
}
,
quotaTicketDetails:
{
quotaChangeRequestSubType: string ,
quotaChangeRequestVersion: string ,
quotaChangeRequests:
[
{
region: string ,
payload: string ,
}
,
]
,
}
,
secondaryConsent:
[
{
userConsent: enum ,
type: string ,
}
,
]
,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
ChatTranscripts_List (removed)
Description Lists all chat transcripts for a support ticket under subscription
Reference Link ¶

⚼ Request

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

⚐ Response (200)

{
nextLink: string ,
value:
[
{
properties:
{
messages:
[
{
contentType: string ,
communicationDirection: enum ,
sender: string ,
body: string ,
createdDate: string ,
}
,
]
,
startTime: string ,
}
,
}
,
]
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
ChatTranscripts_Get (removed)
Description Returns chatTranscript details for a support ticket under a subscription.
Reference Link ¶

⚼ Request

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

⚐ Response (200)

{
properties:
{
messages:
[
{
contentType: string ,
communicationDirection: enum ,
sender: string ,
body: string ,
createdDate: string ,
}
,
]
,
startTime: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Communications_CheckNameAvailability (removed)
Description Check the availability of a resource name. This API should 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
{
api-version: string ,
subscriptionId: string ,
supportTicketName: string ,
checkNameAvailabilityInput:
{
name: string ,
type: enum ,
}
,
}

⚐ Response (200)

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

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
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
{
api-version: string ,
subscriptionId: string ,
supportTicketName: string ,
$top: integer ,
$filter: string ,
}

⚐ Response (200)

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

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Communications_Get (removed)
Description Returns communication details for a support ticket.
Reference Link ¶

⚼ Request

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

⚐ Response (200)

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

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}
Communications_Create (removed)
Description Adds a new customer communication to an Azure support ticket.
Reference Link ¶

⚼ Request

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

⚐ Response (200)

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

⚐ Response (202)

{
location: string ,
retry-after: integer ,
}

⚐ Response (default)

{
error:
{
code: string ,
message: string ,
target: string ,
details:
[
string ,
]
,
additionalInfo:
[
{
type: string ,
info: object ,
}
,
]
,
}
,
}