Check Order Status
POSThttps://pay.fondy.eu/api/status/order_id
This endpoint allows merchants to check the current status of an order through a host-to-host request. The request can be made in JSON, XML, or HTML FORM format, and the response will be returned in the same format as the request.
Request
Responses
- 200
Order status response in the requested format (JSON, XML, or HTML FORM).
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://pay.fondy.eu/api/status/order_id");
request.Headers.Add("Accept", "application/json");
var content = new StringContent("{\n \"request\": {\n \"order_id\": \"ORDER_12345678\",\n \"merchant_id\": 1,\n \"signature\": \"1773cf135bd89656131134b98637894dad42f808\",\n \"version\": \"1.0\"\n }\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear