Skip to main content

Get payout required fields

GET 

https://api.cleverhub.co/api/v2/payouts/payout_method/params

Certain payout methods may require information to be collected from consumers. This API will provide all the parameters potentially needed for a specific payout method. The returned parameters could be either optional or mandatory.

Request​

Query Parameters

    payout_method_name stringrequired

    Payout method name

Responses​

OK

Schema
    record object
    currencystringrequired

    Currency Code (ISO 4217, 3-char alphabetic code).

    symbolstring

    Currency symbol.

    logostring

    Bank or ewallet logo.

    payout_method_namestringrequired

    Payout method name

    descriptionstringrequired

    Description payin method.

    payment_typestringrequired

    Type of payment, incoming or outgoing.

    payout_method_paramsobjectrequired

    Params need using payout method.Each payment method may have different parameters, which can be either mandatory or optional.

    banks object[]required
  • Array [
  • codestringrequired

    Identification of the bank

    namestringrequired

    Bank name

    short_namestring

    Bank short name

  • ]
  • min_amountnumberrequired

    The minimum allowable amount.

    max_amountnumberrequired

    The maximum allowable amount.

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/payouts/payout_method/params");
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
— queryrequired
ResponseClear

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