Skip to main content

Documentation

Get Application Template

Retrieve the template of the application for the proprietor in order to view its fields and valid values. Enter the relevant endpoint according to the type of proprietor:

  • A sole proprietorship that requires a physical card for their transactions:

    /v1/partner/onboarding/application/sole_prop_card_present

  • A sole proprietorship that does not require a physical card for their transactions:

    /v1/partner/onboarding/application/sole_prop_card_not_present

  • A non-sole proprietorship that requires a physical card for their transactions:

    /v1/partner/onboarding/application/non_sole_prop_card_present

  • A non-sole proprietorship that does not require a physical card for their transactions:

    /v1/partner/onboarding/application/non_sole_prop_card_not_present

If you do not know the MCC code of the proprietor then run List Industries. Certain industry types do not enable filling out the application via API methods and require filling it out via a hosted page link that is sent when creating the application. In such scenarios the following instructions are returned: "Template not available for this industry type. The industry type for this application must filled out online. A hosted page link is returned after creating the application."

    • application_type

    • The type of application:

      • sole_prop_card_present - A sole proprietorship that requires a physical card for their transactions.

      • sole_prop_card_not_present - A sole proprietorship that does not require a physical card for their transactions.

      • non_sole_prop_card_present - A non-sole proprietorship that requires a physical card for their transactions.

      • non_sole_prop_card_not_present - A non-sole proprietorship that does not require a physical card for their transactions.

    • country

    • Two-letter ISO 3166-1 ALPHA-2 code for the country.

    • business_industry

    • The 4 digit industry code of the proprietor. See also List Industries.

    • entity_type

    • Required for a non-sole proprietor template. Valid values:

      • Charity_or_NPO

      • Government_Entity

      • Partnership

      • Public_Listed_Company

      • Private_Limited_Company

Objects returned for Sole Prop. Card Present and Sole Prop. Card Not Present:

Objects returned for Non-Sole Prop. Card Present and Non-Sole Prop. Card Not Present:

For all templates, each section includes unique fields where each field includes these parameters:

    Note

    Certain industry types do not enable filling out the application via API methods and require filling it out via a hosted page link that is sent when creating the application. In such scenarios the template is not returned and the following instructions are displayed: "Template not available for this industry type. The industry type for this application must filled out online. A hosted page link is returned after creating the application."

    Sole Prop Card Present:

    Sole Prop Card Not Present:

    Non-sole Prop Card Present:

    Non-sole Prop Card Not Present:

    • /v1/partner/onboarding/application/type/:application_type

    • Get Application Template - Sole Prop. Card Present

    • curl -X get
      https://api.rapyd.net/partner/onboarding/application/type/sole_prop_card_present?country=US&business_industry=4814' \
      -H 'access_key: your-access-key-here'
      -H 'Content-Type: application/json'
      -H 'idempotency: your-idempotency-parameter-here'
      -H 'salt: your-random-string-here'
      -H 'signature: your-calculated-signature-here'
      -H 'merchant_account_id: your-merchant-account-here'
      
      
    • {
          "status": {
              "error_code": "",
              "status": "SUCCESS",
              "message": "Success",
              "response_code": "",
              "operation_id": "c5acefd6-217d-4e2c-bb41-a4d413192832"
          },
          "data": {
              "sections": {
                  "business": {
                      "trade_name": {
                          "fields": [
                              {
                                  "field_type": "trade_name",
                                  "description": "Brand Name",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^.{0,80}$"
                                  }
                              }
                          ]
                      },
                      "product_description": {
                          "fields": [
                              {
                                  "field_type": "business_desc",
                                  "description": "Business Description",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "url": {
                          "fields": [
                              {
                                  "field_type": "business_url",
                                  "description": "URL",
                                  "input_type": "string",
                                  "is_mandatory": false
                              }
                          ]
                      },
                      "transaction_information": {
                          "fields": [
                              {
                                  "field_type": "avg_tpv_usd",
                                  "description": "Average Transaction Value (USD)",
                                  "input_type": "number",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "expectedMaximumTransactionAmount",
                                  "description": "Highest Single Transaction Expected (USD)",
                                  "input_type": "number",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "averageTimeBetweenPurchaseAndDeliveryInDays",
                                  "description": "Average Order Fulfillment Time (Days)",
                                  "input_type": "number",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "annual_revenue",
                                  "description": "Approx Annual Revenue (USD)",
                                  "input_type": "number",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "statement_descriptor": {
                          "fields": [
                              {
                                  "field_type": "statement_descriptor",
                                  "description": "Statement Descriptor",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^(?=.*?[a-zA-Z])[A-Za-z0-9 ]{5,22}$"
                                  }
                              }
                          ]
                      },
                      "proof_of_address_document": {
                          "fields": [
                              {
                                  "field_type": "address_ref",
                                  "description": "Proof of Address Document",
                                  "input_type": "file",
                                  "is_mandatory": true,
                                  "max_files": 1
                              }
                          ]
                      },
                      "proof_of_address": {
                          "fields": [
                              {
                                  "field_type": "physical_address",
                                  "description": "Physical Business Address",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "address_additional_details",
                                  "description": "Address Line 2",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "postal_code",
                                  "description": "Postal Code",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^\\d{5}([ \\-]\\d{4})?$"
                                  }
                              },
                              {
                                  "field_type": "city",
                                  "description": "City",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "country",
                                  "description": "Address Country",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      }
                  },
                  "company": {
                      "business_name": {
                          "fields": [
                              {
                                  "field_type": "business_name",
                                  "description": "Official Business Name",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^.{0,80}$"
                                  }
                              }
                          ]
                      },
                      "phone": {
                          "fields": [
                              {
                                  "field_type": "phone_country_code",
                                  "description": "Phone Country Code",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "phone_number",
                                  "description": "Phone Number",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "company_number": {
                          "fields": [
                              {
                                  "field_type": "registration_number",
                                  "description": "Registration Number",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "address": {
                          "fields": [
                              {
                                  "field_type": "address",
                                  "description": "Address Line 1",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "address_additional_details",
                                  "description": "Address Line 2",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "postal_code",
                                  "description": "Postal Code",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^\\d{5}([ \\-]\\d{4})?$"
                                  }
                              },
                              {
                                  "field_type": "city",
                                  "description": "City",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "us_state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "country",
                                  "description": "Address Country",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "company_documents": {
                          "fields": [
                              {
                                  "field_type": "company_documents",
                                  "description": "Company Supporting Documents",
                                  "input_type": "file",
                                  "is_mandatory": false,
                                  "max_files": 50
                              }
                          ]
                      },
                      "vat_id": {
                          "fields": [
                              {
                                  "field_type": "tax_id",
                                  "description": "VAT Number",
                                  "input_type": "string",
                                  "is_mandatory": false
                              }
                          ]
                      }
                  },
                  "owner": {
                      "name": {
                          "fields": [
                              {
                                  "field_type": "first_name",
                                  "description": "First Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "last_name",
                                  "description": "Last Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "dob": {
                          "fields": [
                              {
                                  "field_type": "dob",
                                  "description": "Date of Birth",
                                  "input_type": "date",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "identification": {
                          "fields": [
                              {
                                  "field_type": "id_type",
                                  "description": "Identification Type",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "in_list"
                                  },
                                  "LOV": [
                                      {
                                          "id": "lv_oit00002",
                                          "value": "National ID"
                                      },
                                      {
                                          "id": "lv_oit00003",
                                          "value": "Passport"
                                      },
                                      {
                                          "id": "lv_oit00004",
                                          "value": "Driver's License"
                                      }
                                  ]
                              },
                              {
                                  "field_type": "id",
                                  "description": "Identification Value",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "id_img",
                                  "description": "Identification Front Image",
                                  "input_type": "file",
                                  "is_mandatory": true,
                                  "max_files": 1
                              },
                              {
                                  "field_type": "government_id_img",
                                  "description": "Back of Government-issued Photo ID",
                                  "input_type": "file",
                                  "is_mandatory": false,
                                  "max_files": 1
                              }
                          ]
                      },
                      "phone": {
                          "fields": [
                              {
                                  "field_type": "phone_country_code",
                                  "description": "Phone Country Code",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "phone_number",
                                  "description": "Phone Number",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "email": {
                          "fields": [
                              {
                                  "field_type": "email",
                                  "description": "Email Address",
                                  "input_type": "email",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "nationality": {
                          "fields": [
                              {
                                  "field_type": "nationality",
                                  "description": "Citizenship",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "additional_citizenships",
                                  "description": "Additional Citizenships",
                                  "input_type": "array<string>",
                                  "is_mandatory": false
                              }
                          ]
                      },
                      "address": {
                          "fields": [
                              {
                                  "field_type": "address",
                                  "description": "Address Line 1",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "address_additional_details",
                                  "description": "Address Line 2",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "postal_code",
                                  "description": "Postal Code",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^\\d{5}([ \\-]\\d{4})?$"
                                  }
                              },
                              {
                                  "field_type": "city",
                                  "description": "City",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "us_state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "country",
                                  "description": "Address Country",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "proof_of_address_document": {
                          "fields": [
                              {
                                  "field_type": "address_ref",
                                  "description": "Proof of Address Document",
                                  "input_type": "file",
                                  "is_mandatory": true,
                                  "max_files": 1
                              }
                          ]
                      }
                  }
              }
          }
      }
    • Get Application Template - Sole Prop. Card Not Present

    • curl -X get
      https://api.rapyd.net/partner/onboarding/application/type/sole_prop_card_not_present?country=US&business_industry=4814
      -H 'access_key: your-access-key-here'
      -H 'Content-Type: application/json'
      -H 'idempotency: your-idempotency-parameter-here'
      -H 'salt: your-random-string-here'
      -H 'signature: your-calculated-signature-here'
      -H 'merchant_account_id: your-merchant-account-here'
      
      
    • {
          "status": {
              "error_code": "",
              "status": "SUCCESS",
              "message": "Success",
              "response_code": "",
              "operation_id": "ed71b2fa-a342-499a-92ab-ff0af806df88"
          },
          "data": {
              "sections": {
                  "business": {
                      "trade_name": {
                          "fields": [
                              {
                                  "field_type": "trade_name",
                                  "description": "Brand Name",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^.{0,80}$"
                                  }
                              }
                          ]
                      },
                      "product_description": {
                          "fields": [
                              {
                                  "field_type": "business_desc",
                                  "description": "Business Description",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "url": {
                          "fields": [
                              {
                                  "field_type": "business_url",
                                  "description": "URL",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "transaction_information": {
                          "fields": [
                              {
                                  "field_type": "avg_tpv_usd",
                                  "description": "Average Transaction Value (USD)",
                                  "input_type": "number",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "expectedMaximumTransactionAmount",
                                  "description": "Highest Single Transaction Expected (USD)",
                                  "input_type": "number",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "averageTimeBetweenPurchaseAndDeliveryInDays",
                                  "description": "Average Order Fulfillment Time (Days)",
                                  "input_type": "number",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "annual_revenue",
                                  "description": "Approx Annual Revenue (USD)",
                                  "input_type": "number",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "statement_descriptor": {
                          "fields": [
                              {
                                  "field_type": "statement_descriptor",
                                  "description": "Statement Descriptor",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^(?=.*?[a-zA-Z])[A-Za-z0-9 ]{5,22}$"
                                  }
                              }
                          ]
                      }
                  },
                  "company": {
                      "business_name": {
                          "fields": [
                              {
                                  "field_type": "business_name",
                                  "description": "Official Business Name",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^.{0,80}$"
                                  }
                              }
                          ]
                      },
                      "phone": {
                          "fields": [
                              {
                                  "field_type": "phone_country_code",
                                  "description": "Phone Country Code",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "phone_number",
                                  "description": "Phone Number",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "company_number": {
                          "fields": [
                              {
                                  "field_type": "registration_number",
                                  "description": "Registration Number",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "address": {
                          "fields": [
                              {
                                  "field_type": "address",
                                  "description": "Address Line 1",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "address_additional_details",
                                  "description": "Address Line 2",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "postal_code",
                                  "description": "Postal Code",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^\\d{5}([ \\-]\\d{4})?$"
                                  }
                              },
                              {
                                  "field_type": "city",
                                  "description": "City",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "us_state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "country",
                                  "description": "Address Country",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "company_documents": {
                          "fields": [
                              {
                                  "field_type": "company_documents",
                                  "description": "Company Supporting Documents",
                                  "input_type": "file",
                                  "is_mandatory": false,
                                  "max_files": 50
                              }
                          ]
                      },
                      "vat_id": {
                          "fields": [
                              {
                                  "field_type": "tax_id",
                                  "description": "VAT Number",
                                  "input_type": "string",
                                  "is_mandatory": false
                              }
                          ]
                      }
                  },
                  "owner": {
                      "name": {
                          "fields": [
                              {
                                  "field_type": "first_name",
                                  "description": "First Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "last_name",
                                  "description": "Last Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "dob": {
                          "fields": [
                              {
                                  "field_type": "dob",
                                  "description": "Date of Birth",
                                  "input_type": "date",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "identification": {
                          "fields": [
                              {
                                  "field_type": "id_type",
                                  "description": "Identification Type",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "in_list"
                                  },
                                  "LOV": [
                                      {
                                          "id": "lv_oit00002",
                                          "value": "National ID"
                                      },
                                      {
                                          "id": "lv_oit00003",
                                          "value": "Passport"
                                      },
                                      {
                                          "id": "lv_oit00004",
                                          "value": "Driver's License"
                                      }
                                  ]
                              },
                              {
                                  "field_type": "id",
                                  "description": "Identification Value",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "id_img",
                                  "description": "Identification Front Image",
                                  "input_type": "file",
                                  "is_mandatory": true,
                                  "max_files": 1
                              },
                              {
                                  "field_type": "government_id_img",
                                  "description": "Back of Government-issued Photo ID",
                                  "input_type": "file",
                                  "is_mandatory": false,
                                  "max_files": 1
                              }
                          ]
                      },
                      "phone": {
                          "fields": [
                              {
                                  "field_type": "phone_country_code",
                                  "description": "Phone Country Code",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "phone_number",
                                  "description": "Phone Number",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "email": {
                          "fields": [
                              {
                                  "field_type": "email",
                                  "description": "Email Address",
                                  "input_type": "email",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "nationality": {
                          "fields": [
                              {
                                  "field_type": "nationality",
                                  "description": "Citizenship",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "additional_citizenships",
                                  "description": "Additional Citizenships",
                                  "input_type": "array<string>",
                                  "is_mandatory": false
                              }
                          ]
                      },
                      "address": {
                          "fields": [
                              {
                                  "field_type": "address",
                                  "description": "Address Line 1",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "address_additional_details",
                                  "description": "Address Line 2",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "postal_code",
                                  "description": "Postal Code",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^\\d{5}([ \\-]\\d{4})?$"
                                  }
                              },
                              {
                                  "field_type": "city",
                                  "description": "City",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "us_state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "country",
                                  "description": "Address Country",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "proof_of_address_document": {
                          "fields": [
                              {
                                  "field_type": "address_ref",
                                  "description": "Proof of Address Document",
                                  "input_type": "file",
                                  "is_mandatory": true,
                                  "max_files": 1
                              }
                          ]
                      }
                  }
              }
          }
      }
    • Get Application Template - Non-Sole Prop. Card Present

    • curl -X get
      https://api.rapyd.net/partner/onboarding/application/type/non_sole_prop_card_present?country=US&business_industry=4814&entity_type=Charity_or_NPO
      -H 'access_key: your-access-key-here'
      -H 'Content-Type: application/json'
      -H 'idempotency: your-idempotency-parameter-here'
      -H 'salt: your-random-string-here'
      -H 'signature: your-calculated-signature-here'
      -H 'merchant_account_id: your-merchant-account-here'
      
    • {
          "status": {
              "error_code": "",
              "status": "SUCCESS",
              "message": "Success",
              "response_code": "",
              "operation_id": "0e5cbe1c-4b63-412f-b764-6ea6a1713913"
          },
          "data": {
              "sections": {
                  "business": {
                      "trade_name": {
                          "fields": [
                              {
                                  "field_type": "trade_name",
                                  "description": "Brand Name",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^.{0,80}$"
                                  }
                              }
                          ]
                      },
                      "product_description": {
                          "fields": [
                              {
                                  "field_type": "business_desc",
                                  "description": "Business Description",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "url": {
                          "fields": [
                              {
                                  "field_type": "business_url",
                                  "description": "URL",
                                  "input_type": "string",
                                  "is_mandatory": false
                              }
                          ]
                      },
                      "transaction_information": {
                          "fields": [
                              {
                                  "field_type": "avg_tpv_usd",
                                  "description": "Average Transaction Value (USD)",
                                  "input_type": "number",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "expectedMaximumTransactionAmount",
                                  "description": "Highest Single Transaction Expected (USD)",
                                  "input_type": "number",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "averageTimeBetweenPurchaseAndDeliveryInDays",
                                  "description": "Average Order Fulfillment Time (Days)",
                                  "input_type": "number",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "annual_revenue",
                                  "description": "Approx Annual Revenue (USD)",
                                  "input_type": "number",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "statement_descriptor": {
                          "fields": [
                              {
                                  "field_type": "statement_descriptor",
                                  "description": "Statement Descriptor",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^(?=.*?[a-zA-Z])[A-Za-z0-9 ]{5,22}$"
                                  }
                              }
                          ]
                      },
                      "proof_of_address_document": {
                          "fields": [
                              {
                                  "field_type": "address_ref",
                                  "description": "Proof of Address Document",
                                  "input_type": "file",
                                  "is_mandatory": true,
                                  "max_files": 1
                              }
                          ]
                      },
                      "proof_of_address": {
                          "fields": [
                              {
                                  "field_type": "physical_address",
                                  "description": "Physical Business Address",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "address_additional_details",
                                  "description": "Address Line 2",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "postal_code",
                                  "description": "Postal Code",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^\\d{5}([ \\-]\\d{4})?$"
                                  }
                              },
                              {
                                  "field_type": "city",
                                  "description": "City",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "country",
                                  "description": "Address Country",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      }
                  },
                  "company": {
                      "business_name": {
                          "fields": [
                              {
                                  "field_type": "business_name",
                                  "description": "Official Business Name",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^.{0,80}$"
                                  }
                              }
                          ]
                      },
                      "phone": {
                          "fields": [
                              {
                                  "field_type": "phone_country_code",
                                  "description": "Phone Country Code",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "phone_number",
                                  "description": "Phone Number",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "company_number": {
                          "fields": [
                              {
                                  "field_type": "registration_number",
                                  "description": "Registration Number",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "address": {
                          "fields": [
                              {
                                  "field_type": "address",
                                  "description": "Address Line 1",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "address_additional_details",
                                  "description": "Address Line 2",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "postal_code",
                                  "description": "Postal Code",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^\\d{5}([ \\-]\\d{4})?$"
                                  }
                              },
                              {
                                  "field_type": "city",
                                  "description": "City",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "us_state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "country",
                                  "description": "Address Country",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "company_documents": {
                          "fields": [
                              {
                                  "field_type": "company_documents",
                                  "description": "Company Supporting Documents",
                                  "input_type": "file",
                                  "is_mandatory": false,
                                  "max_files": 50
                              }
                          ]
                      },
                      "vat_id": {
                          "fields": [
                              {
                                  "field_type": "tax_id",
                                  "description": "VAT Number",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      }
                  },
                  "AU": {
                      "name": {
                          "fields": [
                              {
                                  "field_type": "first_name",
                                  "description": "First Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "last_name",
                                  "description": "Last Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "dob": {
                          "fields": [
                              {
                                  "field_type": "dob",
                                  "description": "Date of Birth",
                                  "input_type": "date",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "address": {
                          "fields": [
                              {
                                  "field_type": "address",
                                  "description": "Address Line 1",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "address_additional_details",
                                  "description": "Address Line 2",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "postal_code",
                                  "description": "Postal Code",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^\\d{5}([ \\-]\\d{4})?$"
                                  }
                              },
                              {
                                  "field_type": "city",
                                  "description": "City",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "country",
                                  "description": "Address Country",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "title": {
                          "fields": [
                              {
                                  "field_type": "user_title",
                                  "description": "Title",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "in_list"
                                  },
                                  "LOV": [
                                      {
                                          "id": "lv_ti00001",
                                          "value": "CEO"
                                      },
                                      {
                                          "id": "lv_ti00002",
                                          "value": "CTO"
                                      },
                                      {
                                          "id": "lv_ti00003",
                                          "value": "CFO"
                                      },
                                      {
                                          "id": "lv_ti00004",
                                          "value": "Treasurer"
                                      },
                                      {
                                          "id": "lv_ti00005",
                                          "value": "President"
                                      },
                                      {
                                          "id": "lv_ti00006",
                                          "value": "Vice President"
                                      },
                                      {
                                          "id": "lv_ti00007",
                                          "value": "Secretary"
                                      },
                                      {
                                          "id": "lv_ti00008",
                                          "value": "Chair of Board"
                                      },
                                      {
                                          "id": "lv_ti00009",
                                          "value": "Director"
                                      },
                                      {
                                          "id": "lv_ti00010",
                                          "value": "Other"
                                      }
                                  ]
                              }
                          ]
                      },
                      "email": {
                          "fields": [
                              {
                                  "field_type": "email",
                                  "description": "Email Address",
                                  "input_type": "email",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "nationality": {
                          "fields": [
                              {
                                  "field_type": "nationality",
                                  "description": "Citizenship",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "additional_citizenships",
                                  "description": "Additional Citizenships",
                                  "input_type": "array<string>",
                                  "is_mandatory": false
                              }
                          ]
                      },
                      "phone": {
                          "fields": [
                              {
                                  "field_type": "phone_country_code",
                                  "description": "Phone Country Code",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "phone_number",
                                  "description": "Phone Number",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "identification": {
                          "fields": [
                              {
                                  "field_type": "id_type",
                                  "description": "Identification Type",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "in_list"
                                  },
                                  "LOV": [
                                      {
                                          "id": "lv_oit00002",
                                          "value": "National ID"
                                      },
                                      {
                                          "id": "lv_oit00003",
                                          "value": "Passport"
                                      },
                                      {
                                          "id": "lv_oit00004",
                                          "value": "Driver's License"
                                      }
                                  ]
                              },
                              {
                                  "field_type": "id",
                                  "description": "Identification Value",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "id_img",
                                  "description": "Identification Front Image",
                                  "input_type": "file",
                                  "is_mandatory": true,
                                  "max_files": 1
                              },
                              {
                                  "field_type": "government_id_img",
                                  "description": "Back of Government-issued Photo ID",
                                  "input_type": "file",
                                  "is_mandatory": false,
                                  "max_files": 1
                              }
                          ]
                      },
                      "proof_of_address_document": {
                          "fields": [
                              {
                                  "field_type": "address_ref",
                                  "description": "Proof of Address Document",
                                  "input_type": "file",
                                  "is_mandatory": true,
                                  "max_files": 1
                              }
                          ]
                      }
                  },
                  "shareholders_control": {
                      "has_owner": {
                          "fields": [
                              {
                                  "field_type": "shareholder_exists",
                                  "description": "Do you have any shareholders in your business who own at least 25% of the business?",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      }
                  },
                  "shareholder_3": {
                      "type": {
                          "fields": [
                              {
                                  "field_type": "shareholder_type",
                                  "description": "Type",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "in_list"
                                  },
                                  "LOV": [
                                      {
                                          "id": "lv_oty00002",
                                          "value": "Individual"
                                      }
                                  ]
                              }
                          ]
                      },
                      "name": {
                          "fields": [
                              {
                                  "field_type": "first_name",
                                  "description": "First Name/Company Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "last_name",
                                  "description": "Last Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "ownership": {
                          "fields": [
                              {
                                  "field_type": "ownership_percentage",
                                  "description": "Ownership Percentage",
                                  "input_type": "number",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "range_int",
                                      "value": {
                                          "max": 100,
                                          "min": 25
                                      }
                                  }
                              }
                          ]
                      },
                      "dob": {
                          "fields": [
                              {
                                  "field_type": "dob",
                                  "description": "Date of Birth",
                                  "input_type": "date",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "phone": {
                          "fields": [
                              {
                                  "field_type": "phone_country_code",
                                  "description": "Phone Country Code",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "phone_number",
                                  "description": "Phone Number",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "email": {
                          "fields": [
                              {
                                  "field_type": "email",
                                  "description": "Email Address",
                                  "input_type": "email",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "nationality": {
                          "fields": [
                              {
                                  "field_type": "nationality",
                                  "description": "Citizenship",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "additional_citizenships",
                                  "description": "Additional Citizenships",
                                  "input_type": "array<string>",
                                  "is_mandatory": false
                              }
                          ]
                      },
                      "address": {
                          "fields": [
                              {
                                  "field_type": "address",
                                  "description": "Address Line 1",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "address_additional_details",
                                  "description": "Address Line 2",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "postal_code",
                                  "description": "Postal Code",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^\\d{5}([ \\-]\\d{4})?$"
                                  }
                              },
                              {
                                  "field_type": "city",
                                  "description": "City",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "country",
                                  "description": "Address Country",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "ownership_proof": {
                          "fields": [
                              {
                                  "field_type": "ownership_ref_type",
                                  "description": "Proof of Ownership ",
                                  "input_type": "file",
                                  "is_mandatory": true,
                                  "max_files": 1
                              }
                          ]
                      }
                  },
                  "shareholder_2": {
                      "type": {
                          "fields": [
                              {
                                  "field_type": "shareholder_type",
                                  "description": "Type",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "in_list"
                                  },
                                  "LOV": [
                                      {
                                          "id": "lv_oty00002",
                                          "value": "Individual"
                                      }
                                  ]
                              }
                          ]
                      },
                      "name": {
                          "fields": [
                              {
                                  "field_type": "first_name",
                                  "description": "First Name/Company Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "last_name",
                                  "description": "Last Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "ownership": {
                          "fields": [
                              {
                                  "field_type": "ownership_percentage",
                                  "description": "Ownership Percentage",
                                  "input_type": "number",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "range_int",
                                      "value": {
                                          "max": 100,
                                          "min": 25
                                      }
                                  }
                              }
                          ]
                      },
                      "dob": {
                          "fields": [
                              {
                                  "field_type": "dob",
                                  "description": "Date of Birth",
                                  "input_type": "date",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "phone": {
                          "fields": [
                              {
                                  "field_type": "phone_country_code",
                                  "description": "Phone Country Code",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "phone_number",
                                  "description": "Phone Number",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "email": {
                          "fields": [
                              {
                                  "field_type": "email",
                                  "description": "Email Address",
                                  "input_type": "email",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "nationality": {
                          "fields": [
                              {
                                  "field_type": "nationality",
                                  "description": "Citizenship",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "additional_citizenships",
                                  "description": "Additional Citizenships",
                                  "input_type": "array<string>",
                                  "is_mandatory": false
                              }
                          ]
                      },
                      "address": {
                          "fields": [
                              {
                                  "field_type": "address",
                                  "description": "Address Line 1",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "address_additional_details",
                                  "description": "Address Line 2",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "postal_code",
                                  "description": "Postal Code",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^\\d{5}([ \\-]\\d{4})?$"
                                  }
                              },
                              {
                                  "field_type": "city",
                                  "description": "City",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "country",
                                  "description": "Address Country",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "ownership_proof": {
                          "fields": [
                              {
                                  "field_type": "ownership_ref_type",
                                  "description": "Proof of Ownership ",
                                  "input_type": "file",
                                  "is_mandatory": true,
                                  "max_files": 1
                              }
                          ]
                      }
                  },
                  "shareholder_1": {
                      "type": {
                          "fields": [
                              {
                                  "field_type": "shareholder_type",
                                  "description": "Type",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "in_list"
                                  },
                                  "LOV": [
                                      {
                                          "id": "lv_oty00002",
                                          "value": "Individual"
                                      }
                                  ]
                              }
                          ]
                      },
                      "name": {
                          "fields": [
                              {
                                  "field_type": "first_name",
                                  "description": "First Name/Company Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "last_name",
                                  "description": "Last Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "ownership": {
                          "fields": [
                              {
                                  "field_type": "ownership_percentage",
                                  "description": "Ownership Percentage",
                                  "input_type": "number",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "range_int",
                                      "value": {
                                          "max": 100,
                                          "min": 25
                                      }
                                  }
                              }
                          ]
                      },
                      "dob": {
                          "fields": [
                              {
                                  "field_type": "dob",
                                  "description": "Date of Birth",
                                  "input_type": "date",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "phone": {
                          "fields": [
                              {
                                  "field_type": "phone_country_code",
                                  "description": "Phone Country Code",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "phone_number",
                                  "description": "Phone Number",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "email": {
                          "fields": [
                              {
                                  "field_type": "email",
                                  "description": "Email Address",
                                  "input_type": "email",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "nationality": {
                          "fields": [
                              {
                                  "field_type": "nationality",
                                  "description": "Citizenship",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "additional_citizenships",
                                  "description": "Additional Citizenships",
                                  "input_type": "array<string>",
                                  "is_mandatory": false
                              }
                          ]
                      },
                      "address": {
                          "fields": [
                              {
                                  "field_type": "address",
                                  "description": "Address Line 1",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "address_additional_details",
                                  "description": "Address Line 2",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "postal_code",
                                  "description": "Postal Code",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^\\d{5}([ \\-]\\d{4})?$"
                                  }
                              },
                              {
                                  "field_type": "city",
                                  "description": "City",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "country",
                                  "description": "Address Country",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "ownership_proof": {
                          "fields": [
                              {
                                  "field_type": "ownership_ref_type",
                                  "description": "Proof of Ownership ",
                                  "input_type": "file",
                                  "is_mandatory": true,
                                  "max_files": 1
                              }
                          ]
                      }
                  },
                  "shareholder": {
                      "type": {
                          "fields": [
                              {
                                  "field_type": "shareholder_type",
                                  "description": "Type",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "in_list"
                                  },
                                  "LOV": [
                                      {
                                          "id": "lv_oty00002",
                                          "value": "Individual"
                                      }
                                  ]
                              }
                          ]
                      },
                      "name": {
                          "fields": [
                              {
                                  "field_type": "first_name",
                                  "description": "First Name/Company Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "last_name",
                                  "description": "Last Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "ownership": {
                          "fields": [
                              {
                                  "field_type": "ownership_percentage",
                                  "description": "Ownership Percentage",
                                  "input_type": "number",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "range_int",
                                      "value": {
                                          "max": 100,
                                          "min": 25
                                      }
                                  }
                              }
                          ]
                      },
                      "dob": {
                          "fields": [
                              {
                                  "field_type": "dob",
                                  "description": "Date of Birth",
                                  "input_type": "date",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "phone": {
                          "fields": [
                              {
                                  "field_type": "phone_country_code",
                                  "description": "Phone Country Code",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "phone_number",
                                  "description": "Phone Number",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "email": {
                          "fields": [
                              {
                                  "field_type": "email",
                                  "description": "Email Address",
                                  "input_type": "email",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "nationality": {
                          "fields": [
                              {
                                  "field_type": "nationality",
                                  "description": "Citizenship",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "additional_citizenships",
                                  "description": "Additional Citizenships",
                                  "input_type": "array<string>",
                                  "is_mandatory": false
                              }
                          ]
                      },
                      "address": {
                          "fields": [
                              {
                                  "field_type": "address",
                                  "description": "Address Line 1",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "address_additional_details",
                                  "description": "Address Line 2",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "postal_code",
                                  "description": "Postal Code",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^\\d{5}([ \\-]\\d{4})?$"
                                  }
                              },
                              {
                                  "field_type": "city",
                                  "description": "City",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "country",
                                  "description": "Address Country",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "ownership_proof": {
                          "fields": [
                              {
                                  "field_type": "ownership_ref_type",
                                  "description": "Proof of Ownership ",
                                  "input_type": "file",
                                  "is_mandatory": true,
                                  "max_files": 1
                              }
                          ]
                      }
                  }
              }
          }
      } 
    • Get Application Template - Non-Sole Prop. Card Not Present

    • curl -X get
      https://api.rapyd.net/partner/onboarding/application/type/non_sole_prop_card_not_present?country=US&business_industry=4814&entity_type=Charity_or_NPO
      -H 'access_key: your-access-key-here'
      -H 'Content-Type: application/json'
      -H 'idempotency: your-idempotency-parameter-here'
      -H 'salt: your-random-string-here'
      -H 'signature: your-calculated-signature-here'
      -H 'merchant_account_id: your-merchant-account-here'
      
    • {
          "status": {
              "error_code": "",
              "status": "SUCCESS",
              "message": "Success",
              "response_code": "",
              "operation_id": "97d3ffbd-158e-4769-ab0f-2b6f1de2fc92"
          },
          "data": {
              "sections": {
                  "business": {
                      "trade_name": {
                          "fields": [
                              {
                                  "field_type": "trade_name",
                                  "description": "Brand Name",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^.{0,80}$"
                                  }
                              }
                          ]
                      },
                      "product_description": {
                          "fields": [
                              {
                                  "field_type": "business_desc",
                                  "description": "Business Description",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "url": {
                          "fields": [
                              {
                                  "field_type": "business_url",
                                  "description": "URL",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "transaction_information": {
                          "fields": [
                              {
                                  "field_type": "avg_tpv_usd",
                                  "description": "Average Transaction Value (USD)",
                                  "input_type": "number",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "expectedMaximumTransactionAmount",
                                  "description": "Highest Single Transaction Expected (USD)",
                                  "input_type": "number",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "averageTimeBetweenPurchaseAndDeliveryInDays",
                                  "description": "Average Order Fulfillment Time (Days)",
                                  "input_type": "number",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "annual_revenue",
                                  "description": "Approx Annual Revenue (USD)",
                                  "input_type": "number",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "statement_descriptor": {
                          "fields": [
                              {
                                  "field_type": "statement_descriptor",
                                  "description": "Statement Descriptor",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^(?=.*?[a-zA-Z])[A-Za-z0-9 ]{5,22}$"
                                  }
                              }
                          ]
                      }
                  },
                  "company": {
                      "business_name": {
                          "fields": [
                              {
                                  "field_type": "business_name",
                                  "description": "Official Business Name",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^.{0,80}$"
                                  }
                              }
                          ]
                      },
                      "phone": {
                          "fields": [
                              {
                                  "field_type": "phone_country_code",
                                  "description": "Phone Country Code",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "phone_number",
                                  "description": "Phone Number",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "company_number": {
                          "fields": [
                              {
                                  "field_type": "registration_number",
                                  "description": "Registration Number",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "address": {
                          "fields": [
                              {
                                  "field_type": "address",
                                  "description": "Address Line 1",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "address_additional_details",
                                  "description": "Address Line 2",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "postal_code",
                                  "description": "Postal Code",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^\\d{5}([ \\-]\\d{4})?$"
                                  }
                              },
                              {
                                  "field_type": "city",
                                  "description": "City",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "us_state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "country",
                                  "description": "Address Country",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "company_documents": {
                          "fields": [
                              {
                                  "field_type": "company_documents",
                                  "description": "Company Supporting Documents",
                                  "input_type": "file",
                                  "is_mandatory": false,
                                  "max_files": 50
                              }
                          ]
                      },
                      "vat_id": {
                          "fields": [
                              {
                                  "field_type": "tax_id",
                                  "description": "VAT Number",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      }
                  },
                  "AU": {
                      "name": {
                          "fields": [
                              {
                                  "field_type": "first_name",
                                  "description": "First Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "last_name",
                                  "description": "Last Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "dob": {
                          "fields": [
                              {
                                  "field_type": "dob",
                                  "description": "Date of Birth",
                                  "input_type": "date",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "address": {
                          "fields": [
                              {
                                  "field_type": "address",
                                  "description": "Address Line 1",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "address_additional_details",
                                  "description": "Address Line 2",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "postal_code",
                                  "description": "Postal Code",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^\\d{5}([ \\-]\\d{4})?$"
                                  }
                              },
                              {
                                  "field_type": "city",
                                  "description": "City",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "country",
                                  "description": "Address Country",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "title": {
                          "fields": [
                              {
                                  "field_type": "user_title",
                                  "description": "Title",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "in_list"
                                  },
                                  "LOV": [
                                      {
                                          "id": "lv_ti00001",
                                          "value": "CEO"
                                      },
                                      {
                                          "id": "lv_ti00002",
                                          "value": "CTO"
                                      },
                                      {
                                          "id": "lv_ti00003",
                                          "value": "CFO"
                                      },
                                      {
                                          "id": "lv_ti00004",
                                          "value": "Treasurer"
                                      },
                                      {
                                          "id": "lv_ti00005",
                                          "value": "President"
                                      },
                                      {
                                          "id": "lv_ti00006",
                                          "value": "Vice President"
                                      },
                                      {
                                          "id": "lv_ti00007",
                                          "value": "Secretary"
                                      },
                                      {
                                          "id": "lv_ti00008",
                                          "value": "Chair of Board"
                                      },
                                      {
                                          "id": "lv_ti00009",
                                          "value": "Director"
                                      },
                                      {
                                          "id": "lv_ti00010",
                                          "value": "Other"
                                      }
                                  ]
                              }
                          ]
                      },
                      "email": {
                          "fields": [
                              {
                                  "field_type": "email",
                                  "description": "Email Address",
                                  "input_type": "email",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "nationality": {
                          "fields": [
                              {
                                  "field_type": "nationality",
                                  "description": "Citizenship",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "additional_citizenships",
                                  "description": "Additional Citizenships",
                                  "input_type": "array<string>",
                                  "is_mandatory": false
                              }
                          ]
                      },
                      "phone": {
                          "fields": [
                              {
                                  "field_type": "phone_country_code",
                                  "description": "Phone Country Code",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "phone_number",
                                  "description": "Phone Number",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "identification": {
                          "fields": [
                              {
                                  "field_type": "id_type",
                                  "description": "Identification Type",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "in_list"
                                  },
                                  "LOV": [
                                      {
                                          "id": "lv_oit00002",
                                          "value": "National ID"
                                      },
                                      {
                                          "id": "lv_oit00003",
                                          "value": "Passport"
                                      },
                                      {
                                          "id": "lv_oit00004",
                                          "value": "Driver's License"
                                      }
                                  ]
                              },
                              {
                                  "field_type": "id",
                                  "description": "Identification Value",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "id_img",
                                  "description": "Identification Front Image",
                                  "input_type": "file",
                                  "is_mandatory": true,
                                  "max_files": 1
                              },
                              {
                                  "field_type": "government_id_img",
                                  "description": "Back of Government-issued Photo ID",
                                  "input_type": "file",
                                  "is_mandatory": false,
                                  "max_files": 1
                              }
                          ]
                      },
                      "proof_of_address_document": {
                          "fields": [
                              {
                                  "field_type": "address_ref",
                                  "description": "Proof of Address Document",
                                  "input_type": "file",
                                  "is_mandatory": true,
                                  "max_files": 1
                              }
                          ]
                      }
                  },
                  "shareholders_control": {
                      "has_owner": {
                          "fields": [
                              {
                                  "field_type": "shareholder_exists",
                                  "description": "Do you have any shareholders in your business who own at least 25% of the business?",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      }
                  },
                  "shareholder_3": {
                      "type": {
                          "fields": [
                              {
                                  "field_type": "shareholder_type",
                                  "description": "Type",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "in_list"
                                  },
                                  "LOV": [
                                      {
                                          "id": "lv_oty00002",
                                          "value": "Individual"
                                      }
                                  ]
                              }
                          ]
                      },
                      "name": {
                          "fields": [
                              {
                                  "field_type": "first_name",
                                  "description": "First Name/Company Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "last_name",
                                  "description": "Last Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "ownership": {
                          "fields": [
                              {
                                  "field_type": "ownership_percentage",
                                  "description": "Ownership Percentage",
                                  "input_type": "number",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "range_int",
                                      "value": {
                                          "max": 100,
                                          "min": 25
                                      }
                                  }
                              }
                          ]
                      },
                      "dob": {
                          "fields": [
                              {
                                  "field_type": "dob",
                                  "description": "Date of Birth",
                                  "input_type": "date",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "phone": {
                          "fields": [
                              {
                                  "field_type": "phone_country_code",
                                  "description": "Phone Country Code",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "phone_number",
                                  "description": "Phone Number",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "email": {
                          "fields": [
                              {
                                  "field_type": "email",
                                  "description": "Email Address",
                                  "input_type": "email",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "nationality": {
                          "fields": [
                              {
                                  "field_type": "nationality",
                                  "description": "Citizenship",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "additional_citizenships",
                                  "description": "Additional Citizenships",
                                  "input_type": "array<string>",
                                  "is_mandatory": false
                              }
                          ]
                      },
                      "address": {
                          "fields": [
                              {
                                  "field_type": "address",
                                  "description": "Address Line 1",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "address_additional_details",
                                  "description": "Address Line 2",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "postal_code",
                                  "description": "Postal Code",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^\\d{5}([ \\-]\\d{4})?$"
                                  }
                              },
                              {
                                  "field_type": "city",
                                  "description": "City",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "country",
                                  "description": "Address Country",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "ownership_proof": {
                          "fields": [
                              {
                                  "field_type": "ownership_ref_type",
                                  "description": "Proof of Ownership ",
                                  "input_type": "file",
                                  "is_mandatory": true,
                                  "max_files": 1
                              }
                          ]
                      }
                  },
                  "shareholder_2": {
                      "type": {
                          "fields": [
                              {
                                  "field_type": "shareholder_type",
                                  "description": "Type",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "in_list"
                                  },
                                  "LOV": [
                                      {
                                          "id": "lv_oty00002",
                                          "value": "Individual"
                                      }
                                  ]
                              }
                          ]
                      },
                      "name": {
                          "fields": [
                              {
                                  "field_type": "first_name",
                                  "description": "First Name/Company Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "last_name",
                                  "description": "Last Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "ownership": {
                          "fields": [
                              {
                                  "field_type": "ownership_percentage",
                                  "description": "Ownership Percentage",
                                  "input_type": "number",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "range_int",
                                      "value": {
                                          "max": 100,
                                          "min": 25
                                      }
                                  }
                              }
                          ]
                      },
                      "dob": {
                          "fields": [
                              {
                                  "field_type": "dob",
                                  "description": "Date of Birth",
                                  "input_type": "date",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "phone": {
                          "fields": [
                              {
                                  "field_type": "phone_country_code",
                                  "description": "Phone Country Code",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "phone_number",
                                  "description": "Phone Number",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "email": {
                          "fields": [
                              {
                                  "field_type": "email",
                                  "description": "Email Address",
                                  "input_type": "email",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "nationality": {
                          "fields": [
                              {
                                  "field_type": "nationality",
                                  "description": "Citizenship",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "additional_citizenships",
                                  "description": "Additional Citizenships",
                                  "input_type": "array<string>",
                                  "is_mandatory": false
                              }
                          ]
                      },
                      "address": {
                          "fields": [
                              {
                                  "field_type": "address",
                                  "description": "Address Line 1",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "address_additional_details",
                                  "description": "Address Line 2",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "postal_code",
                                  "description": "Postal Code",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^\\d{5}([ \\-]\\d{4})?$"
                                  }
                              },
                              {
                                  "field_type": "city",
                                  "description": "City",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "country",
                                  "description": "Address Country",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "ownership_proof": {
                          "fields": [
                              {
                                  "field_type": "ownership_ref_type",
                                  "description": "Proof of Ownership ",
                                  "input_type": "file",
                                  "is_mandatory": true,
                                  "max_files": 1
                              }
                          ]
                      }
                  },
                  "shareholder_1": {
                      "type": {
                          "fields": [
                              {
                                  "field_type": "shareholder_type",
                                  "description": "Type",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "in_list"
                                  },
                                  "LOV": [
                                      {
                                          "id": "lv_oty00002",
                                          "value": "Individual"
                                      }
                                  ]
                              }
                          ]
                      },
                      "name": {
                          "fields": [
                              {
                                  "field_type": "first_name",
                                  "description": "First Name/Company Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "last_name",
                                  "description": "Last Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "ownership": {
                          "fields": [
                              {
                                  "field_type": "ownership_percentage",
                                  "description": "Ownership Percentage",
                                  "input_type": "number",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "range_int",
                                      "value": {
                                          "max": 100,
                                          "min": 25
                                      }
                                  }
                              }
                          ]
                      },
                      "dob": {
                          "fields": [
                              {
                                  "field_type": "dob",
                                  "description": "Date of Birth",
                                  "input_type": "date",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "phone": {
                          "fields": [
                              {
                                  "field_type": "phone_country_code",
                                  "description": "Phone Country Code",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "phone_number",
                                  "description": "Phone Number",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "email": {
                          "fields": [
                              {
                                  "field_type": "email",
                                  "description": "Email Address",
                                  "input_type": "email",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "nationality": {
                          "fields": [
                              {
                                  "field_type": "nationality",
                                  "description": "Citizenship",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "additional_citizenships",
                                  "description": "Additional Citizenships",
                                  "input_type": "array<string>",
                                  "is_mandatory": false
                              }
                          ]
                      },
                      "address": {
                          "fields": [
                              {
                                  "field_type": "address",
                                  "description": "Address Line 1",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "address_additional_details",
                                  "description": "Address Line 2",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "postal_code",
                                  "description": "Postal Code",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^\\d{5}([ \\-]\\d{4})?$"
                                  }
                              },
                              {
                                  "field_type": "city",
                                  "description": "City",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "country",
                                  "description": "Address Country",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "ownership_proof": {
                          "fields": [
                              {
                                  "field_type": "ownership_ref_type",
                                  "description": "Proof of Ownership ",
                                  "input_type": "file",
                                  "is_mandatory": true,
                                  "max_files": 1
                              }
                          ]
                      }
                  },
                  "shareholder": {
                      "type": {
                          "fields": [
                              {
                                  "field_type": "shareholder_type",
                                  "description": "Type",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "in_list"
                                  },
                                  "LOV": [
                                      {
                                          "id": "lv_oty00002",
                                          "value": "Individual"
                                      }
                                  ]
                              }
                          ]
                      },
                      "name": {
                          "fields": [
                              {
                                  "field_type": "first_name",
                                  "description": "First Name/Company Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "last_name",
                                  "description": "Last Name",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "ownership": {
                          "fields": [
                              {
                                  "field_type": "ownership_percentage",
                                  "description": "Ownership Percentage",
                                  "input_type": "number",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "range_int",
                                      "value": {
                                          "max": 100,
                                          "min": 25
                                      }
                                  }
                              }
                          ]
                      },
                      "dob": {
                          "fields": [
                              {
                                  "field_type": "dob",
                                  "description": "Date of Birth",
                                  "input_type": "date",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "phone": {
                          "fields": [
                              {
                                  "field_type": "phone_country_code",
                                  "description": "Phone Country Code",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "phone_number",
                                  "description": "Phone Number",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "email": {
                          "fields": [
                              {
                                  "field_type": "email",
                                  "description": "Email Address",
                                  "input_type": "email",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "nationality": {
                          "fields": [
                              {
                                  "field_type": "nationality",
                                  "description": "Citizenship",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "additional_citizenships",
                                  "description": "Additional Citizenships",
                                  "input_type": "array<string>",
                                  "is_mandatory": false
                              }
                          ]
                      },
                      "address": {
                          "fields": [
                              {
                                  "field_type": "address",
                                  "description": "Address Line 1",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "address_additional_details",
                                  "description": "Address Line 2",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "postal_code",
                                  "description": "Postal Code",
                                  "input_type": "string",
                                  "is_mandatory": true,
                                  "input_validation": {
                                      "validation_type": "regex",
                                      "value": "^\\d{5}([ \\-]\\d{4})?$"
                                  }
                              },
                              {
                                  "field_type": "city",
                                  "description": "City",
                                  "input_type": "string",
                                  "is_mandatory": true
                              },
                              {
                                  "field_type": "state",
                                  "description": "State",
                                  "input_type": "string",
                                  "is_mandatory": false
                              },
                              {
                                  "field_type": "country",
                                  "description": "Address Country",
                                  "input_type": "string",
                                  "is_mandatory": true
                              }
                          ]
                      },
                      "ownership_proof": {
                          "fields": [
                              {
                                  "field_type": "ownership_ref_type",
                                  "description": "Proof of Ownership ",
                                  "input_type": "file",
                                  "is_mandatory": true,
                                  "max_files": 1
                              }
                          ]
                      }
                  }
              }
          }
      }  
                  
      
      
    • Get Application Template - Industry type only for online application

    • curl -X get
      https://api.rapyd.net/partner/onboarding/application/type/sole_prop_card_present?country=US&business_industry=7995 
      -H 'access_key: your-access-key-here'
      -H 'Content-Type: application/json'
      -H 'idempotency: your-idempotency-parameter-here'
      -H 'salt: your-random-string-here'
      -H 'signature: your-calculated-signature-here'
      -H 'merchant_account_id: your-merchant-account-here'
      
    • {
          "status": {
              "error_code": "",
              "status": "SUCCESS",
              "message": "",
              "response_code": "",
              "operation_id": "74151687-7a38-45da-951e-24905cc4e5f5"
          },
          "data": {
              "instructions": "Template not available for this industry type. The industry type for this application must filled out online. A hosted page link is returned after creating the application."
          }
      }