Skip to main content

Get document requirements

GET 

https://sandbox.api.hubpay.ae/v1/account/documents/required

Lists required documents for the account and their status

Request

Header Parameters

    AccountId stringrequired

    ID of account for which operation is to be performed

    Example: e038b313-0b04-48d3-867e-7fee463501db

Responses

OK

Schema
    documentRequirements object[]required
  • Array [
  • documentTypestringrequired

    Document type identifier for the document requirement.

    Allowed values:

    • TRADE_LICENSE: Valid Trade/Commercial license
    • MEMORANDUM_OF_ASSOCIATION_OR_ARTICLES_OF_ASSOCIATION: Memorandum of Association or Articles of Association
    • BUSINESS_PROOF_OF_ADDRESS: Valid proof of business address
    • POWER_OF_ATTORNEY: Power of attorney or Board resolution
    • BANK_STATEMENT: 3 months bank statement
    • LATEST_AUDITED_FINANCIAL_STATEMENTS: Latest Audited Financial Statements
    • LETTER_OF_AUTHORISATION_WITH_TERMS_AND_CONDITIONS: Letter of Authorisation (with Terms and Conditions)

    Possible values: [TRADE_LICENSE, MEMORANDUM_OF_ASSOCIATION_OR_ARTICLES_OF_ASSOCIATION, BUSINESS_PROOF_OF_ADDRESS, POWER_OF_ATTORNEY, BANK_STATEMENT, LATEST_AUDITED_FINANCIAL_STATEMENTS, LETTER_OF_AUTHORISATION_WITH_TERMS_AND_CONDITIONS, INVESTMENT_AGREEMENT]

    titlestringrequired
    descriptionstringrequired
    requiredbooleanrequired
  • ]

Authorization: http

name: Authorizationtype: httpdescription: JWT Bearer token for authenticating API requestsscheme: bearerbearerFormat: JWT
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://sandbox.api.hubpay.ae/v1/account/documents/required");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://sandbox.api.hubpay.ae
Auth
Parameters
— headerrequired
ResponseClear

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