Skip to main content

Check Order Status

POST 

https://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

Order status response in the requested format (JSON, XML, or HTML FORM).

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());
Request Collapse all
Base URL
https://pay.fondy.eu/api
Parameters
— headerrequired
Body
{
  "request": {
    "order_id": "ORDER_12345678",
    "merchant_id": 1,
    "signature": "1773cf135bd89656131134b98637894dad42f808",
    "version": "1.0"
  }
}
ResponseClear

Click the Send API Request button above and see the response here!