GET
/
verification
/
businesses
/
{businessId}
/
owners
curl --request GET \
  --url https://api.joinworth.com/integration/api/v1/verification/businesses/{businessId}/owners \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "message": "KYC Ownership Verification fetched successfully",
  "data": [
    {
      "id": "47797fcf-09ff-46d7-b500-39141135c52f",
      "title": "Director",
      "first_name": "Leslie",
      "last_name": "Knope",
      "email": "admin@joinworth.com",
      "mobile": "+12345678909",
      "date_of_birth": "1989-07-22",
      "address_apartment": null,
      "address_line_1": "123 Main St.",
      "address_line_2": null,
      "address_city": "Pawnee",
      "address_state": "Indiana",
      "address_postal_code": "46001",
      "address_country": "USA",
      "created_at": "2024-05-16T11:34:14.545Z",
      "created_by": "19ac7412-6c06-4742-8c52-38787c4e889a",
      "updated_at": "2024-05-16T11:34:14.545Z",
      "updated_by": "19ac7412-6c06-4742-8c52-38787c4e889a",
      "last_four_of_ssn": "6789",
      "year_of_birth": "",
      "kyc_check": {
        "name": {
          "summary": "match"
        },
        "status": "success",
        "address": {
          "type": "no_data",
          "po_box": "no_data",
          "summary": "match"
        },
        "id_number": {
          "summary": "match"
        },
        "phone_number": {
          "summary": "match",
          "area_code": "match"
        },
        "date_of_birth": {
          "summary": "match"
        }
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

businessId
string
required

The unique universal identifier string for the business.

Response

200
application/json; charset=utf-8

OK

The response is of type object.