Skip to main content

Get Payin Details

GET 

https://api.cleverhub.co/api/v2/payins/detail

This API allows you to fetch the details of a specific payin request. You can use the UUID to retrieve the details of a specific payment request.

Request

Query Parameters

    uuid any

    Unique ID in system.

Responses

OK

Schema
    uuidstring

    Unique Id in system.

    namestring

    Customer name.

    emailstring

    Customer email.

    external_idstring

    Custom ID.

    statuspending | received | expired | return_pending | return_received | return_expired
    pay_code object

    Code using pay

    redirect_urlstring
    currencystring
    gstboolean
    amountnumber
    gst_amountnumber
    totalnumber
    paid_amountnumber
    payment_methodstring
    descriptionstring
    is_refundableboolean
    expired_atdate-time
    pay_bydate-time
    webhook_notification object
    endpoint_urlstring
    authorization_headerstring

Authorization: app-id

name: app-idtype: apiKeydescription: The app-id is registered and secured inside Hello Clever system and only required when client has initiated or in the middle of the transaction.in: header
name: secret-keytype: apiKeydescription: The secret-key is our client's secret of the source. Required if a publishable key is used to retrieve the source.in: header
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.cleverhub.co/api/v2/payins/detail");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("app-id", "<app-id>");
request.Headers.Add("secret-key", "<app-id>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.cleverhub.co/api
Auth
Parameters
— query
ResponseClear

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