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": "4e56263d-f076-4c9f-947c-9dbf8f9c3556",
      "title": 3,
      "first_name": "Leslie",
      "last_name": "Knope",
      "ssn": "U2FsdGVkX19Xie5AknXJBH0Lc+UHRS69/0hOXf5qhC4=",
      "email": "abc@xyz.com",
      "mobile": "+12345678909",
      "date_of_birth": "U2FsdGVkX18vpnZL7LLx2QH40ZBZ5sjdnUwGQlnu6Cw=",
      "address_apartment": null,
      "address_line_1": "123 Main St.",
      "address_line_2": null,
      "address_city": "Pawnee",
      "address_state": "IN",
      "address_postal_code": "46001",
      "address_country": "USA",
      "created_at": "2025-04-01T07:24:55.205Z",
      "created_by": "7882addb-9b7e-436b-8392-38c713dc47aa",
      "updated_at": "2025-04-01T07:31:07.716Z",
      "updated_by": "7882addb-9b7e-436b-8392-38c713dc47aa",
      "last_four_of_ssn": "6789",
      "year_of_birth": "",
      "kyc_check": {
        "status": "failed"
      }
    },
    {
      "id": "54b8740a-7cc2-4d12-88b6-840b471ed311",
      "title": 3,
      "first_name": "Leslie",
      "last_name": "Knope",
      "ssn": "U2FsdGVkX1+1a0TQ+yChMo7e3P+nKys89pQxXdJVHbE=",
      "email": "abc@xyz.com",
      "mobile": "+12345678909",
      "date_of_birth": "U2FsdGVkX19smUZSI4p9Ci416JoL1D26gPukK1EMR1c=",
      "address_apartment": null,
      "address_line_1": "123 Main St.",
      "address_line_2": null,
      "address_city": "Pawnee",
      "address_state": "IN",
      "address_postal_code": "46001",
      "address_country": "USA",
      "created_at": "2025-04-01T05:16:58.128Z",
      "created_by": "7882addb-9b7e-436b-8392-38c713dc47aa",
      "updated_at": "2025-04-01T07:34:15.601Z",
      "updated_by": "7882addb-9b7e-436b-8392-38c713dc47aa",
      "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

Response

200
application/json; charset=utf-8
OK
status
string
required
message
string
required
data
object
required

Was this page helpful?