Aktualisieren des Supportprofils
Gilt für: Partner Center | Partner Center-Betrieb durch 21Vianet | Partner Center für Microsoft Cloud for US Government
Updates das Supportprofil eines Benutzers.
Voraussetzungen
- Anmeldeinformationen, wie unter Partner Center-Authentifizierung beschrieben. In diesem Szenario wird Authentifizierung nur mit App- und Benutzeranmeldeinformationen unterstützt.
C#
Um das Supportprofil zu aktualisieren, rufen Sie Ihr Supportprofil ab, und nehmen Sie die gewünschten Änderungen vor. Verwenden Sie dann Ihre IPartnerOperations.Profiles-Auflistung . Rufen Sie die SupportProfile-Eigenschaft auf, gefolgt von der Update() - oder UpdateAsync() -Methode.
// IAggregatePartner partnerOperations;
// updated profile
SupportProfile newSupportProfile = new SupportProfile
{
Email = supportProfile.Email,
Website = supportProfile.Website,
Telephone = new Random().Next(10000000, 99999999).ToString(CultureInfo.InvariantCulture)
};
SupportProfile updatedSupportProfile = partnerOperations.Profiles.SupportProfile.Update(newSupportProfile);
Beispiel: Konsolentest-App. Projekt: PartnerCenterSDK.FeaturesSamples-Klasse: UpdateSupportProfile.cs
REST-Anforderung
Anforderungssyntax
Methode | Anforderungs-URI |
---|---|
PUT | {baseURL}/v1/profiles/supportprofile HTTP/1.1 |
Anforderungsheader
Weitere Informationen finden Sie unter Partner Center-REST-Header.
Anforderungstext
Die vollständige Supportprofilressource.
Anforderungsbeispiel
PUT https://api.partnercenter.microsoft.com/v1/profiles/supportprofile HTTP/1.1
Authorization: Bearer <token>
Accept: application/json
MS-RequestId: 603f3cd9-01b8-48f2-b65d-855a246f5bfd
MS-CorrelationId: aaaa0000-bb11-2222-33cc-444444dddddd
Content-Type: application/json
Content-Length: 167
Expect: 100-continue
{
"Email": "email@sample.com",
"Telephone": "4255555555",
"Website": "www.microsoft.com",
"ProfileType": "support_profile",
"Attributes": {
"ObjectType": "PartnerSupportProfile"
}
}
REST-Antwort
Bei erfolgreicher Ausführung gibt diese Methode aktualisierte SupportProfile-Objekteigenschaften im Antworttext zurück.
Erfolgs- und Fehlercodes der Antwort
Jede Antwort enthält einen HTTP-Statuscode, der Aufschluss darüber gibt, ob der Vorgang erfolgreich war, sowie ggf. zusätzliche Debuginformationen. Verwende ein Tool für die Netzwerkablaufverfolgung, um diesen Code, den Fehlertyp und zusätzliche Parameter zu lesen. Die vollständige Liste findest du unter Partner-API: REST-Fehlercodes.
Antwortbeispiel
HTTP/1.1 200 OK
Content-Length: 502
Content-Type: application/json
MS-CorrelationId: aaaa0000-bb11-2222-33cc-444444dddddd
MS-RequestId: 603f3cd9-01b8-48f2-b65d-855a246f5bfd
Date: Wed, 25 Nov 2015 07:16:18 GMT
{
"email": "email@sample.com",
"telephone": "4255555555",
"website": "www.microsoft.com",
"profileType": "support_profile",
"links": {
"self": {
"uri": "/v1/profiles/support",
"method": "GET",
"headers": []
}
},
"attributes": {
"objectType": "PartnerSupportProfile"
}
}