Skip to main content

Create business account profile

Public wrapper endpoint for business account creation. Third-party callers must use version=2024-10-01 on this route; pw-wrappers translates the request to the upstream DevHouse business-account contract internally.

Endpoint​

POST /account/business_account

Query Parameters​

  • version (string, required) - API contract version. Use exactly 2024-10-01.
  • diagnostics (boolean, optional) - Non-production docs only. Set true to include extra diagnostic metadata (for example observed_client_ip).

Header Parameters​

  • PW-subscription-key (string, required)
  • PW-origin-country (string, required)
  • PW-request-date (string, required) - UTC request timestamp formatted as YYYY-MM-DD HH:mm:ss.
  • PW-ip-address (string, required)
  • User-Agent (string, required)

Header Constraints​

KeyDescriptionExampleData typeRequirementField Length
PW-subscription-keyDeveloper key available after portal registration. Production key is shared on request.eed0d85c530c4b26a91d09b783d8fab3stringmandatory32
PW-origin-countryISO Alpha-2 country code where the transaction is created.TTstringmandatory2
PW-request-dateCurrent request timestamp. Format: YYYY-MM-DD HH:mm:ss (UTC).2014-10-08 16:01:31stringmandatory19
PW-ip-addressFixed institution IP used for PayWise network-level validation.255.255.255.255stringconditional8-16
User-AgentIn programmable environments, this avoids running into Cloudflare issues.Mozilla/5.0 (Windows NT 10.0; Win64; x64)stringmandatory255

Request Body​

{
"business_name": "Suri",
"first_name": "kieran",
"last_name": "paul",
"email": "[email protected]",
"mobile_number": "+18683630173"
}

Downloads​

Responses​

200 - Wrapper-normalized response envelope (success cases).​

Example: success​

{
"status": "success",
"code": 200,
"message": "Account created successfully.",
"pin": 672879,
"api_key": "CCEUBRSTVCRNLS7G15IVJRRKJDY28K",
"authorisation_token": "5SK9ON32LNWX51MQ0P5E2UOPS1E4SS"
}

Notes​

This endpoint page is generated from openapi/pw-wrappers.2024-10-01.yaml.