Create Account
Create a new account with optional MMS setup (Clerk org, SVIX, API key)
Headers
- enumAcceptconst:application/jsonrequired
Response format. Must be
application/json.values- application/json
- enumContent
- Type const:application/jsonrequiredRequest payload format. Must be
application/jsonwhen a body is sent.values- application/json
Body·AccountCreateRequestV2
required
application/json
- Type: object · Addressaddressrequired
- Type: string · Descriptiondescriptionrequired
- Type: string · Namenamerequired
- Type: string · AccountTypeenumtyperequiredvalues
- admin
- psp
- partner
- merchant
- Type: string | null · Admin Emailadmin
_email - Type: string | null · Admin First Nameadmin
_first _name - Type: string | null · Admin Last Nameadmin
_last _name - Type: array string[] · Available Processor Configsavailable
_processor _configs - Type: boolean | null · Has Access To Mmshas
_access _to _mms - Type: string | null · Mccmcc
- Type: string | null · Parent Idparent
_id - Type: number | null · Surcharge Ratesurcharge
_rate Surcharge percentage for merchant accounts (e.g., 3.5 for 3.5%). Setting to null disables automatic surcharge logic. Setting to 0 means surcharges will NEVER be applied unless explicitly overridden.
Responses
- application/json
- application/json
Request Example for post/v2/accounts
curl https://api.uat.koard.com/v2/accounts \
--request POST \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'x-koard-apikey: YOUR_SECRET_TOKEN' \
--data '{
"address": {
"city": "",
"state": "",
"street_line1": "",
"street_line2": "",
"zip": ""
},
"admin_email": null,
"admin_first_name": null,
"admin_last_name": null,
"available_processor_configs": [
""
],
"description": "",
"has_access_to_mms": false,
"mcc": null,
"name": "",
"parent_id": null,
"surcharge_rate": null,
"tax_id": null,
"type": "admin"
}'
{
"address": {
"city": "string",
"state": "string",
"street_line1": "string",
"street_line2": "",
"zip": "string"
},
"available_processor_configs": [],
"created_at": "2026-04-20T15:32:06.309Z",
"deleted_at": null,
"description": "string",
"has_access_to_apple_config": false,
"has_access_to_mms": false,
"id": "string",
"mcc": null,
"name": "string",
"organization_id": null,
"parent_account_ids": [],
"status": "active",
"surcharge_rate": null,
"tax_id": null,
"type": "admin",
"updated_at": null
}
