mirror of
https://github.com/retailcrm/api-client-dotnet.git
synced 2025-04-17 07:50:57 +00:00
Update README.md
This commit is contained in:
parent
bd349a83d6
commit
2433e24250
1 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ Response response = api.OrdersGet("12345", "externalId");
|
|||
if (response.isSuccessful()) {
|
||||
Debug.WriteLine(Response.GetRawResponse());
|
||||
} else {
|
||||
Debug.WriteLine($"Ошибка получения информации о заказа: [Статус HTTP-ответа {response.GetStatusCode().ToString()}]");
|
||||
Debug.WriteLine($"Ошибка: [Статус HTTP-ответа {response.GetStatusCode().ToString()}]");
|
||||
}
|
||||
|
||||
```
|
||||
|
@ -67,7 +67,7 @@ Response response = api.OrdersCreate(new Dictionary<string, object>
|
|||
if (response.isSuccessful()) {
|
||||
Debug.WriteLine(Response.GetResponse()["externalId"].ToString());
|
||||
} else {
|
||||
Debug.WriteLine($"Ошибка получения информации о заказа: [Статус HTTP-ответа {response.GetStatusCode().ToString()}]");
|
||||
Debug.WriteLine($"Ошибка: [Статус HTTP-ответа {response.GetStatusCode().ToString()}]");
|
||||
}
|
||||
|
||||
```
|
||||
|
|
Loading…
Add table
Reference in a new issue