Skip to main content
GET
/
verification
/
businesses
/
{businessID}
/
business-entity
Get Verification Details
curl --request GET \
  --url https://api.joinworth.com/integration/api/v1/verification/businesses/{businessID}/business-entity \
  --header 'Authorization: Bearer <token>'
{
  "status": "<string>",
  "message": "<string>",
  "data": {
    "businessEntityVerification": {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_at": "2023-12-25",
      "updated_at": "2023-12-25",
      "business_integration_task_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "external_id": "<string>",
      "business_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "status": "in_review",
      "tin": "<string>",
      "formation_state": "<string>",
      "formation_date": "2023-12-25",
      "year": 123,
      "number_of_employees": 123
    },
    "reviewTasks": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "business_entity_verification_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "created_at": "2023-12-25",
        "updated_at": "2023-12-25",
        "category": "sos",
        "key": "<string>",
        "status": "pending",
        "message": "<string>",
        "label": "<string>",
        "sublabel": "<string>",
        "metadata": [
          {
            "id": "ac01034d-325e-455b-bc3d-c1852c6bb306",
            "type": "name",
            "metadata": {
              "name": "banking test 1",
              "submitted": true
            }
          }
        ]
      }
    ],
    "registrations": [
      {
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "business_entity_verification_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "created_at": "2023-12-25",
        "updated_at": "2023-12-25",
        "external_id": "<string>",
        "name": "<string>",
        "status": "active",
        "sub_status": "<string>",
        "status_details": "<string>",
        "jurisdiction": "<string>",
        "entity_type": "<string>",
        "file_number": "<string>",
        "full_addresses": [
          "<string>"
        ],
        "registration_date": "2023-12-25",
        "registration_state": "<string>",
        "source": "<string>"
      }
    ],
    "addressSources": [
      {
        "id": "<string>",
        "business_entity_verification_id": "<string>",
        "created_at": "<string>",
        "updated_at": "<string>",
        "external_id": "<string>",
        "external_registration_id": "<string>",
        "full_address": "<string>",
        "address_line_1": "<string>",
        "address_line_2": "<string>",
        "city": "<string>",
        "state": "<string>",
        "postal_code": "<string>",
        "lat": 123,
        "long": 123,
        "submitted": true,
        "deliverable": true,
        "cmra": true,
        "address_property_type": "<string>"
      }
    ],
    "people": [
      "<string>"
    ],
    "names": [
      {
        "id": "<string>",
        "business_entity_verification_id": "<string>",
        "created_at": "<string>",
        "updated_at": "<string>",
        "name": "<string>",
        "type": "<string>",
        "submitted": true,
        "source": [
          {
            "id": "<string>",
            "type": "<string>",
            "metadata": {
              "state": "<string>",
              "status": "<string>",
              "file_number": "<string>",
              "jurisdiction": "<string>"
            }
          }
        ]
      }
    ]
  }
}

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

OK

status
string
message
string
data
Data54 · object