You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are some deviations from the base guidelines where Microsoft Graph API standards require that you do one of the following:
54
54
55
-
- For RELO pattern you should return the Content-Location header that indicates the location of the resource.
56
-
- The API response says the targeted resource is being created by returning a 201 status code and the resource URI is provided in the Content-Location header, but the response indicates that the request is not completed by including "Provisioning" status.
55
+
- For RELO pattern you should return the Location header that indicates the location of the resource.
56
+
- The API response says the targeted resource is being created by returning a 201 status code and the resource URI is provided in the Location header, but the response indicates that the request is not completed by including "Provisioning" status.
57
57
58
58
- For LRO pattern you should return the Location header that indicates the location of a new stepwise operation resource.
59
59
- The API response says the operation resource is being created at the URL provided in the Location header and indicates that the request is not completed by including a 202 status code.
@@ -113,7 +113,7 @@ A client wants to provision a new database
113
113
POST https://graph.microsoft.com/v1.0/storage/databases/
114
114
115
115
{
116
-
"id": "db1",
116
+
"displayName": "Retail DB",
117
117
}
118
118
```
119
119
@@ -123,10 +123,11 @@ Content-Location header and status property in the response payload.
0 commit comments