Get Account

Get an account by ID.

Path Parameters
  • account_id
    Type: string · Account Id
    required

    The ID of the account to retrieve

Headers
  • Accept
    enum
    const:  
    application/json
    required

    Response format. Must be application/json.

    values
    • application/json
Responses
  • application/json
  • application/json
Request Example for get/v1/accounts/{account_id}
curl 'https://api.uat.koard.com/v1/accounts/{account_id}' \
  --header 'Accept: application/json' \
  --header 'x-koard-apikey: YOUR_SECRET_TOKEN'
{
  "address": {
    "city": "string",
    "state": "string",
    "street_line1": "string",
    "street_line2": "",
    "zip": "string"
  },
  "available_processor_configs": [],
  "created_at": "2026-04-08T04:11:41.530Z",
  "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
}