PAF Core Banking Management System (1.2.1)
Download OpenAPI specification:Download
CBMS API description
Upload a Document
Authorizations:
Request Body schema: multipart/form-datarequired
| frontSide required | string <binary> |
| backSide | string <binary> |
| customerId required | string Id of the customer to whom the document belongs. |
Responses
Response samples
- 201
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "customerId": "string",
- "frontSideUrl": "string",
- "backSideUrl": "string",
- "id": { }
}Find all Uploaded Documents
Authorizations:
query Parameters
object (FilterDto) | |
object (FilterDto) | |
| cursor | string |
| skip | number |
| limit | number |
Responses
Response samples
- 200
{- "uploadedDocuments": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "customerId": "string",
- "frontSideUrl": "string",
- "backSideUrl": "string",
- "id": { }
}
], - "nextCursor": "string",
- "hasMore": true,
- "totalCount": 150
}Find a specific Uploaded Document
Authorizations:
path Parameters
| uploadedDocumentId required | string |
Responses
Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "customerId": "string",
- "frontSideUrl": "string",
- "backSideUrl": "string",
- "id": { }
}Create a Customer
Authorizations:
Request Body schema: application/jsonrequired
| customerType | string (CustomerType) Enum: "INDIVIDUAL" "COMPANY" | ||||||||||||||||||||||
IndividualCustomer (object) or CompanyCustomer (object) | |||||||||||||||||||||||
One of
| |||||||||||||||||||||||
| userId | string | ||||||||||||||||||||||
object (Address) | |||||||||||||||||||||||
| |||||||||||||||||||||||
| isRegisteredAndPrimaryAddressSame | boolean Is registered and primary address same | ||||||||||||||||||||||
object The official address registered by the business in the State of organization. | |||||||||||||||||||||||
| |||||||||||||||||||||||
| isPostalAndPrimaryAddressSame | boolean Is postal and primary address same | ||||||||||||||||||||||
object (Address) | |||||||||||||||||||||||
| |||||||||||||||||||||||
| metadata | object | ||||||||||||||||||||||
Responses
Request samples
- Payload
{- "customerType": "INDIVIDUAL",
- "profile": {
- "firstName": "string",
- "middleName": "string",
- "lastName": "string",
- "dateOfBirth": "2019-08-24T14:15:22Z",
- "citizenship": "AD",
- "taxIdNumber": "string",
- "passportIdNumber": "string",
- "taxIdCountry": "AD",
- "taxState": "string",
- "phoneNumber": "string",
- "email": "string"
}, - "userId": "string",
- "primaryAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "isRegisteredAndPrimaryAddressSame": true,
- "registeredAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "isPostalAndPrimaryAddressSame": true,
- "postalAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "metadata": { }
}Response samples
- 201
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "customerType": "INDIVIDUAL",
- "profile": {
- "firstName": "string",
- "middleName": "string",
- "lastName": "string",
- "dateOfBirth": "2019-08-24T14:15:22Z",
- "citizenship": "AD",
- "taxIdNumber": "string",
- "passportIdNumber": "string",
- "taxIdCountry": "AD",
- "taxState": "string",
- "phoneNumber": "string",
- "email": "string"
}, - "resourceRelationships": {
- "individualDueDiligenceId": "string",
- "companyDueDiligenceId": "string",
- "companyAssociationId": "string",
- "opportunityAccountId": "string",
- "standardAccountId": "string",
- "partnerAccountId": "string",
- "bankingApplicationId": "string",
- "counterpartyIds": [
- "string"
]
}, - "agreementDocuments": {
- "agreementDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "partnerAgreementDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "isSigned": true
}, - "pendingActions": [
- "PERSONAL_INFORMATION_REQUIRED"
], - "userId": "string",
- "primaryAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "isRegisteredAndPrimaryAddressSame": true,
- "registeredAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "isPostalAndPrimaryAddressSame": true,
- "postalAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "metadata": { },
- "id": { }
}Find all Customers
Authorizations:
query Parameters
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
| cursor | string |
| skip | number |
| limit | number |
Responses
Response samples
- 200
{- "customers": [
- { }
], - "nextCursor": "string",
- "hasMore": true,
- "totalCount": 150
}Find the Resource Relationships for Customers
Authorizations:
query Parameters
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) |
Responses
Response samples
- 200
{- "customers": [
- {
- "customerId": "string",
- "userId": "string",
- "resourceRelationships": {
- "individualDueDiligenceId": "string",
- "companyDueDiligenceId": "string",
- "companyAssociationId": "string",
- "opportunityAccountId": "string",
- "standardAccountId": "string",
- "partnerAccountId": "string",
- "bankingApplicationId": "string",
- "counterpartyIds": [
- "string"
]
}
}
], - "nextCursor": "string",
- "hasMore": true,
- "totalCount": 150
}Find the Resource Relationship for a Customer
Authorizations:
path Parameters
| userId required | string |
Responses
Response samples
- 200
{- "customerId": "string",
- "userId": "string",
- "resourceRelationships": {
- "individualDueDiligenceId": "string",
- "companyDueDiligenceId": "string",
- "companyAssociationId": "string",
- "opportunityAccountId": "string",
- "standardAccountId": "string",
- "partnerAccountId": "string",
- "bankingApplicationId": "string",
- "counterpartyIds": [
- "string"
]
}
}Find a specific Customer by ID
Authorizations:
path Parameters
| customerId required | string |
Responses
Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "customerType": "INDIVIDUAL",
- "profile": {
- "firstName": "string",
- "middleName": "string",
- "lastName": "string",
- "dateOfBirth": "2019-08-24T14:15:22Z",
- "citizenship": "AD",
- "taxIdNumber": "string",
- "passportIdNumber": "string",
- "taxIdCountry": "AD",
- "taxState": "string",
- "phoneNumber": "string",
- "email": "string"
}, - "resourceRelationships": {
- "individualDueDiligenceId": "string",
- "companyDueDiligenceId": "string",
- "companyAssociationId": "string",
- "opportunityAccountId": "string",
- "standardAccountId": "string",
- "partnerAccountId": "string",
- "bankingApplicationId": "string",
- "counterpartyIds": [
- "string"
]
}, - "agreementDocuments": {
- "agreementDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "partnerAgreementDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "isSigned": true
}, - "pendingActions": [
- "PERSONAL_INFORMATION_REQUIRED"
], - "userId": "string",
- "primaryAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "isRegisteredAndPrimaryAddressSame": true,
- "registeredAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "isPostalAndPrimaryAddressSame": true,
- "postalAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "metadata": { },
- "id": { }
}Update a specific Customer
Authorizations:
path Parameters
| customerId required | string |
Request Body schema: application/jsonrequired
| customerType | string (CustomerType) Enum: "INDIVIDUAL" "COMPANY" | ||||||||||||
| profile | object | ||||||||||||
object (Address) | |||||||||||||
| |||||||||||||
| isRegisteredAndPrimaryAddressSame | boolean Is registered and primary address same | ||||||||||||
object The official address registered by the business in the State of organization. | |||||||||||||
| |||||||||||||
| isPostalAndPrimaryAddressSame | boolean Is postal and primary address same | ||||||||||||
object (Address) | |||||||||||||
| |||||||||||||
| metadata | object | ||||||||||||
Responses
Request samples
- Payload
{- "customerType": "INDIVIDUAL",
- "profile": { },
- "primaryAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "isRegisteredAndPrimaryAddressSame": true,
- "registeredAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "isPostalAndPrimaryAddressSame": true,
- "postalAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "metadata": { }
}Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "customerType": "INDIVIDUAL",
- "profile": {
- "firstName": "string",
- "middleName": "string",
- "lastName": "string",
- "dateOfBirth": "2019-08-24T14:15:22Z",
- "citizenship": "AD",
- "taxIdNumber": "string",
- "passportIdNumber": "string",
- "taxIdCountry": "AD",
- "taxState": "string",
- "phoneNumber": "string",
- "email": "string"
}, - "resourceRelationships": {
- "individualDueDiligenceId": "string",
- "companyDueDiligenceId": "string",
- "companyAssociationId": "string",
- "opportunityAccountId": "string",
- "standardAccountId": "string",
- "partnerAccountId": "string",
- "bankingApplicationId": "string",
- "counterpartyIds": [
- "string"
]
}, - "agreementDocuments": {
- "agreementDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "partnerAgreementDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "isSigned": true
}, - "pendingActions": [
- "PERSONAL_INFORMATION_REQUIRED"
], - "userId": "string",
- "primaryAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "isRegisteredAndPrimaryAddressSame": true,
- "registeredAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "isPostalAndPrimaryAddressSame": true,
- "postalAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "metadata": { },
- "id": { }
}Sign Onboarding Agreement for customer by customer id
Authorizations:
path Parameters
| customerId required | string |
Request Body schema: application/jsonrequired
| partnerAgreementDocId | string |
Responses
Request samples
- Payload
{- "partnerAgreementDocId": "string"
}Response samples
- 201
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "customerType": "INDIVIDUAL",
- "profile": {
- "firstName": "string",
- "middleName": "string",
- "lastName": "string",
- "dateOfBirth": "2019-08-24T14:15:22Z",
- "citizenship": "AD",
- "taxIdNumber": "string",
- "passportIdNumber": "string",
- "taxIdCountry": "AD",
- "taxState": "string",
- "phoneNumber": "string",
- "email": "string"
}, - "resourceRelationships": {
- "individualDueDiligenceId": "string",
- "companyDueDiligenceId": "string",
- "companyAssociationId": "string",
- "opportunityAccountId": "string",
- "standardAccountId": "string",
- "partnerAccountId": "string",
- "bankingApplicationId": "string",
- "counterpartyIds": [
- "string"
]
}, - "agreementDocuments": {
- "agreementDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "partnerAgreementDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "isSigned": true
}, - "pendingActions": [
- "PERSONAL_INFORMATION_REQUIRED"
], - "userId": "string",
- "primaryAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "isRegisteredAndPrimaryAddressSame": true,
- "registeredAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "isPostalAndPrimaryAddressSame": true,
- "postalAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "metadata": { },
- "id": { }
}Create a Company Association
Authorizations:
Request Body schema: application/jsonrequired
Array of objects (CreateAssociatedPartyDto) | |||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||
| customerId required | string | ||||||||||||||||||||||||||||||||||
object (BeneficialOwnerCertification) | |||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||
Responses
Request samples
- Payload
{- "associatedParties": [
- {
- "associatedPartyTypes": [
- "FORMATION_OFFICER"
], - "profile": {
- "ownershipType": "DIRECTLY",
- "shareOwnership": 0,
- "llcMembership": 0,
- "partnershipAllocation": 0,
- "other": 0,
- "firstName": "string",
- "middleName": "string",
- "lastName": "string",
- "isUsPerson": true,
- "dateOfBirth": "2019-08-24T14:15:22Z",
- "ssn": "string",
- "taxCountry": "AD",
- "taxState": "string",
- "phoneNumber": "string",
- "email": "string",
- "nonUsTaxIdInfo": {
- "passportId": {
- "documentType": "string",
- "uploadedDocumentId": "string"
}, - "countryOfIssuance": "AD",
- "passportNumber": "string"
}
}, - "beneficialOwnerId": "string",
- "isIndividualOwner": true,
- "primaryResidentialAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "occupation": "string",
- "occupationTitle": "string",
- "primaryBusinessAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "isAddressProofSkipped": true,
- "isHaveRelationWithPEP": true,
- "countryOfPEP": "AD",
- "relationWithPEP": "string",
- "hasCertification": true,
- "certificationDetails": "string",
- "identificationDoc": {
- "documentType": "DRIVER_LICENSE",
- "uploadedDocumentId": "string"
}, - "proofOfAddressDoc": {
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string"
}, - "businessEntityFormationAndGoverningDocs": [
- {
- "documentType": "string",
- "uploadedDocumentId": "string"
}
]
}
], - "customerId": "string",
- "beneficialOwnerCertification": {
- "name": "string",
- "signature": "string",
- "date": "2019-08-24T14:15:22Z",
- "entityIdentifier": "string"
}
}Response samples
- 201
{- "companyAssociations": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "pendingActions": [
- "ASSOCIATED_PARTY_REQUIRED"
], - "customerId": "string",
- "associatedPartyIds": [
- "string"
], - "beneficialOwnerCertification": {
- "name": "string",
- "signature": "string",
- "date": "2019-08-24T14:15:22Z",
- "entityIdentifier": "string"
}, - "id": { }
}, - "associatedParties": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "associatedPartyTypes": [
- "FORMATION_OFFICER"
], - "profile": {
- "ownershipType": "DIRECTLY",
- "shareOwnership": 0,
- "llcMembership": 0,
- "partnershipAllocation": 0,
- "other": 0,
- "firstName": "string",
- "middleName": "string",
- "lastName": "string",
- "isUsPerson": true,
- "dateOfBirth": "2019-08-24T14:15:22Z",
- "ssn": "string",
- "nonUsTaxIdInfo": {
- "passportNumber": "string",
- "countryOfIssuance": "AD",
- "passportId": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
}, - "taxCountry": "AD",
- "taxState": "string",
- "phoneNumber": "string",
- "email": "string"
}, - "proofOfAddressDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string",
}, - "identificationDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "DRIVER_LICENSE",
- "uploadedDocumentId": "string",
}, - "businessEntityFormationAndGoverningDocs": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "companyAssociationId": "string",
- "customerId": "string",
- "beneficialOwnerId": "string",
- "isIndividualOwner": true,
- "primaryResidentialAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "occupation": "string",
- "occupationTitle": "string",
- "primaryBusinessAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "isAddressProofSkipped": true,
- "isHaveRelationWithPEP": true,
- "countryOfPEP": "AD",
- "relationWithPEP": "string",
- "hasCertification": true,
- "certificationDetails": "string",
- "metadata": { },
- "pendingActions": { },
- "id": { }
}
]
}Find all Company Associations
Authorizations:
query Parameters
object (FilterDto) | |
| cursor | string |
| skip | number |
| limit | number |
Responses
Response samples
- 200
{- "companyAssociations": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "pendingActions": [
- "ASSOCIATED_PARTY_REQUIRED"
], - "customerId": "string",
- "associatedPartyIds": [
- "string"
], - "beneficialOwnerCertification": {
- "name": "string",
- "signature": "string",
- "date": "2019-08-24T14:15:22Z",
- "entityIdentifier": "string"
}, - "id": { }
}
], - "nextCursor": "string",
- "hasMore": true,
- "totalCount": 150
}Find all Company Associated Parties
Authorizations:
query Parameters
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
| cursor | string |
| skip | number |
| limit | number |
Responses
Response samples
- 200
{- "associatedParties": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "associatedPartyTypes": [
- "FORMATION_OFFICER"
], - "profile": {
- "ownershipType": "DIRECTLY",
- "shareOwnership": 0,
- "llcMembership": 0,
- "partnershipAllocation": 0,
- "other": 0,
- "firstName": "string",
- "middleName": "string",
- "lastName": "string",
- "isUsPerson": true,
- "dateOfBirth": "2019-08-24T14:15:22Z",
- "ssn": "string",
- "nonUsTaxIdInfo": {
- "passportNumber": "string",
- "countryOfIssuance": "AD",
- "passportId": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
}, - "taxCountry": "AD",
- "taxState": "string",
- "phoneNumber": "string",
- "email": "string"
}, - "proofOfAddressDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string",
}, - "identificationDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "DRIVER_LICENSE",
- "uploadedDocumentId": "string",
}, - "businessEntityFormationAndGoverningDocs": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "companyAssociationId": "string",
- "customerId": "string",
- "beneficialOwnerId": "string",
- "isIndividualOwner": true,
- "primaryResidentialAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "occupation": "string",
- "occupationTitle": "string",
- "primaryBusinessAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "isAddressProofSkipped": true,
- "isHaveRelationWithPEP": true,
- "countryOfPEP": "AD",
- "relationWithPEP": "string",
- "hasCertification": true,
- "certificationDetails": "string",
- "metadata": { },
- "pendingActions": { },
- "id": { }
}
], - "nextCursor": "string",
- "hasMore": true,
- "totalCount": 150
}Find a specific Company Association by ID
Authorizations:
path Parameters
| companyAssociationId required | string |
Responses
Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "pendingActions": [
- "ASSOCIATED_PARTY_REQUIRED"
], - "customerId": "string",
- "associatedPartyIds": [
- "string"
], - "beneficialOwnerCertification": {
- "name": "string",
- "signature": "string",
- "date": "2019-08-24T14:15:22Z",
- "entityIdentifier": "string"
}, - "id": { }
}Find the specific Company Associated Party
Authorizations:
path Parameters
| associatedPartyId required | string |
Responses
Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "associatedPartyTypes": [
- "FORMATION_OFFICER"
], - "profile": {
- "ownershipType": "DIRECTLY",
- "shareOwnership": 0,
- "llcMembership": 0,
- "partnershipAllocation": 0,
- "other": 0,
- "firstName": "string",
- "middleName": "string",
- "lastName": "string",
- "isUsPerson": true,
- "dateOfBirth": "2019-08-24T14:15:22Z",
- "ssn": "string",
- "nonUsTaxIdInfo": {
- "passportNumber": "string",
- "countryOfIssuance": "AD",
- "passportId": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
}, - "taxCountry": "AD",
- "taxState": "string",
- "phoneNumber": "string",
- "email": "string"
}, - "proofOfAddressDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string",
}, - "identificationDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "DRIVER_LICENSE",
- "uploadedDocumentId": "string",
}, - "businessEntityFormationAndGoverningDocs": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "companyAssociationId": "string",
- "customerId": "string",
- "beneficialOwnerId": "string",
- "isIndividualOwner": true,
- "primaryResidentialAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "occupation": "string",
- "occupationTitle": "string",
- "primaryBusinessAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "isAddressProofSkipped": true,
- "isHaveRelationWithPEP": true,
- "countryOfPEP": "AD",
- "relationWithPEP": "string",
- "hasCertification": true,
- "certificationDetails": "string",
- "metadata": { },
- "pendingActions": { },
- "id": { }
}Update the Beneficial Owner Certification for a specific Company Association
Authorizations:
path Parameters
| companyAssociationId required | string |
Request Body schema: application/jsonrequired
object (BeneficialOwnerCertification) | |||||||||
| |||||||||
Responses
Request samples
- Payload
{- "beneficialOwnerCertification": {
- "name": "string",
- "signature": "string",
- "date": "2019-08-24T14:15:22Z",
- "entityIdentifier": "string"
}
}Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "pendingActions": [
- "ASSOCIATED_PARTY_REQUIRED"
], - "customerId": "string",
- "associatedPartyIds": [
- "string"
], - "beneficialOwnerCertification": {
- "name": "string",
- "signature": "string",
- "date": "2019-08-24T14:15:22Z",
- "entityIdentifier": "string"
}, - "id": { }
}Upsert the Associated Party for a specific Company Association
Authorizations:
path Parameters
| companyAssociationId required | string |
Request Body schema: application/jsonrequired
| associatedPartyTypes | Array of arrays (AssociatedPartyTypes) Items Enum: "FORMATION_OFFICER" "EXECUTIVE_OFFICER" "SIGNATORY" "TRUSTEE" "KNOWN_GRANTOR" "KNOWN_BENEFICIARY" "BENEFICIAL_OWNER" "ACCOUNT_OWNER" | ||||||||||||||||||||||||||||||||||||||||
IndividualInformationProfileDto (object) or EntityInformationProfileDto (object) | |||||||||||||||||||||||||||||||||||||||||
One of
| |||||||||||||||||||||||||||||||||||||||||
| associatedPartyId | string | ||||||||||||||||||||||||||||||||||||||||
object (IdentificationDocumentArgsDto) | |||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||
object (ProofOfAddressDocumentArgsDto) | |||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||
Array of objects (DefaultDocumentArgsDto) | |||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||
| customerId required | string | ||||||||||||||||||||||||||||||||||||||||
| beneficialOwnerId | string | ||||||||||||||||||||||||||||||||||||||||
| isIndividualOwner | boolean | ||||||||||||||||||||||||||||||||||||||||
object (CompanyAssociationAddress) | |||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||
| occupation | string | ||||||||||||||||||||||||||||||||||||||||
| occupationTitle | string | ||||||||||||||||||||||||||||||||||||||||
object (CompanyAssociationAddress) | |||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||
| isAddressProofSkipped | boolean | ||||||||||||||||||||||||||||||||||||||||
| isHaveRelationWithPEP | boolean | ||||||||||||||||||||||||||||||||||||||||
| countryOfPEP | string Enum: "AD" "AE" "AF" "AG" "AI" "AL" "AM" "AO" "AQ" "AR" "AS" "AT" "AU" "AW" "AX" "AZ" "BA" "BB" "BD" "BE" "BF" "BG" "BH" "BI" "BJ" "BL" "BM" "BN" "BO" "BQ" "BR" "BS" "BT" "BV" "BW" "BZ" "CA" "CC" "CD" "CF" "CG" "CH" "CI" "CK" "CL" "CM" "CN" "CO" "CR" "CV" "CW" "CX" "CY" "CZ" "DE" "DJ" "DK" "DM" "DO" "DZ" "EC" "EE" "EG" "EH" "ER" "ES" "ET" "FI" "FJ" "FK" "FM" "FO" "FR" "GA" "GB" "GD" "GE" "GF" "GG" "GH" "GI" "GL" "GM" "GN" "GP" "GQ" "GR" "GS" "GT" "GU" "GW" "GY" "HK" "HM" "HN" "HR" "HT" "HU" "ID" "IE" "IL" "IM" "IN" "IO" "IQ" "IS" "IT" "JE" "JM" "JO" "JP" "KE" "KG" "KH" "KI" "KM" "KN" "KR" "KW" "KY" "KZ" "LA" "LB" "LC" "LI" "LK" "LR" "LS" "LT" "LU" "LV" "LY" "MA" "MC" "MD" "ME" "MF" "MG" "MH" "MK" "ML" "MM" "MN" "MO" "MP" "MQ" "MR" "MS" "MT" "MU" "MV" "MW" "MX" "MY" "MZ" "NA" "NC" "NE" "NF" "NG" "NI" "NL" "NO" "NP" "NR" "NU" "NZ" "OM" "PA" "PE" "PF" "PG" "PH" "PK" "PL" "PM" "PN" "PR" "PS" "PT" "PW" "PY" "QA" "RE" "RO" "RS" "RW" "SA" "SB" "SC" "SE" "SG" "SH" "SI" "SJ" "SK" "SL" "SM" "SN" "SO" "SR" "ST" "SV" "SX" "SZ" "TC" "TD" "TF" "TG" "TH" "TJ" "TK" "TL" "TM" "TN" "TO" "TR" "TT" "TV" "TW" "TZ" "UA" "UG" "UM" "US" "UY" "UZ" "VA" "VC" "VE" "VG" "VI" "VN" "VU" "WF" "WS" "YE" "YT" "ZA" "ZM" "ZW" | ||||||||||||||||||||||||||||||||||||||||
| relationWithPEP | string | ||||||||||||||||||||||||||||||||||||||||
| hasCertification | boolean | ||||||||||||||||||||||||||||||||||||||||
| certificationDetails | string | ||||||||||||||||||||||||||||||||||||||||
Responses
Request samples
- Payload
{- "associatedPartyTypes": [
- "FORMATION_OFFICER"
], - "profile": {
- "ownershipType": "DIRECTLY",
- "shareOwnership": 0,
- "llcMembership": 0,
- "partnershipAllocation": 0,
- "other": 0,
- "firstName": "string",
- "middleName": "string",
- "lastName": "string",
- "isUsPerson": true,
- "dateOfBirth": "2019-08-24T14:15:22Z",
- "ssn": "string",
- "taxCountry": "AD",
- "taxState": "string",
- "phoneNumber": "string",
- "email": "string",
- "nonUsTaxIdInfo": {
- "passportId": {
- "documentType": "string",
- "uploadedDocumentId": "string"
}, - "countryOfIssuance": "AD",
- "passportNumber": "string"
}
}, - "associatedPartyId": "string",
- "identificationDoc": {
- "documentType": "DRIVER_LICENSE",
- "uploadedDocumentId": "string"
}, - "proofOfAddressDoc": {
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string"
}, - "businessEntityFormationAndGoverningDocs": [
- {
- "documentType": "string",
- "uploadedDocumentId": "string"
}
], - "customerId": "string",
- "beneficialOwnerId": "string",
- "isIndividualOwner": true,
- "primaryResidentialAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "occupation": "string",
- "occupationTitle": "string",
- "primaryBusinessAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "isAddressProofSkipped": true,
- "isHaveRelationWithPEP": true,
- "countryOfPEP": "AD",
- "relationWithPEP": "string",
- "hasCertification": true,
- "certificationDetails": "string"
}Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "associatedPartyTypes": [
- "FORMATION_OFFICER"
], - "profile": {
- "ownershipType": "DIRECTLY",
- "shareOwnership": 0,
- "llcMembership": 0,
- "partnershipAllocation": 0,
- "other": 0,
- "firstName": "string",
- "middleName": "string",
- "lastName": "string",
- "isUsPerson": true,
- "dateOfBirth": "2019-08-24T14:15:22Z",
- "ssn": "string",
- "nonUsTaxIdInfo": {
- "passportNumber": "string",
- "countryOfIssuance": "AD",
- "passportId": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
}, - "taxCountry": "AD",
- "taxState": "string",
- "phoneNumber": "string",
- "email": "string"
}, - "proofOfAddressDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string",
}, - "identificationDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "DRIVER_LICENSE",
- "uploadedDocumentId": "string",
}, - "businessEntityFormationAndGoverningDocs": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "companyAssociationId": "string",
- "customerId": "string",
- "beneficialOwnerId": "string",
- "isIndividualOwner": true,
- "primaryResidentialAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "occupation": "string",
- "occupationTitle": "string",
- "primaryBusinessAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "isAddressProofSkipped": true,
- "isHaveRelationWithPEP": true,
- "countryOfPEP": "AD",
- "relationWithPEP": "string",
- "hasCertification": true,
- "certificationDetails": "string",
- "metadata": { },
- "pendingActions": { },
- "id": { }
}Create a Company Due Diligence
Authorizations:
Request Body schema: application/jsonrequired
object (DefaultDocumentArgsDto) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (UpdateBusinessInformationDto) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (DefaultDocumentArgsDto) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (DefaultDocumentArgsDto) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects (DirectorInformationDto) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects (ManagementInformationDto) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (BankingDocDocumentArgsDto) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects (IndividualBeneficialOwnerDto) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects (LegalEntityBeneficialOwnerDto) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects (DefaultDocumentArgsDto) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (DefaultDocumentArgsDto) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects (DefaultDocumentArgsDto) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (DefaultDocumentArgsDto) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (ProofOfAddressArgsDto) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| customerId required | string Unique identifier for the customer. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
required | object Pre-assessment of company due diligence requirements. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object Financial conditions of the customer. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| isLegalOrIndividualOwnersExist | boolean Flag to indicate if legal or individual owners exist. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| isGoodStanding | boolean Indicates whether the company is in good standing legally and financially. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Responses
Request samples
- Payload
{- "beneficialOwnersCertificateDoc": {
- "documentType": "string",
- "uploadedDocumentId": "string"
}, - "businessInformation": {
- "annualRevenueType": "TRUST",
- "annualProfitType": "TRUST",
- "currentBankStatementsDoc": {
- "documentType": "string",
- "uploadedDocumentId": "string"
}, - "industryType": "Manufacturing",
- "naicsCode": "336340",
- "naicsDescription": "Motor Vehicle Brake System Manufacturing",
- "natureOfBusiness": "Producer of automotive brakes",
- "businessProductsAndServices": "Brake pads, Brake discs",
- "numberOfBranches": 5,
- "locationOfBranches": [
- {
- "country": "US",
- "state": "CA"
}
], - "noOfEmployees": 200,
- "primaryTradeAreas": [
- {
- "country": "AD",
- "expectedVolume": 25
}
], - "majorCustomers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "majorSuppliers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "nameOfPrimaryBank": "Bank of America",
- "totalOutstandingDebt": 200,
- "totalAvailableCash": 200,
- "annualRevenue": 2000,
- "annualRevenueCashPercentage": 25,
- "annualProfit": 2000
}, - "ownershipStructureChart": {
- "documentType": "string",
- "uploadedDocumentId": "string"
}, - "businessManagementOrgChart": {
- "documentType": "string",
- "uploadedDocumentId": "string"
}, - "boardDirectors": [
- {
- "isDirectorManager": true,
- "positionTitle": "string",
- "countryCode": "AD",
- "state": "string",
- "idDocument": {
- "documentType": "US_TIN",
- "uploadedDocumentId": "string"
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C"
}
], - "managementExecutives": [
- {
- "positionTitle": "string",
- "countryCode": "AD",
- "state": "string",
- "idDocument": {
- "documentType": "US_TIN",
- "uploadedDocumentId": "string"
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C"
}
], - "bankingResolutionDoc": {
- "documentType": "CERTIFICATE_OF_INCUMBENCY",
- "uploadedDocumentId": "string"
}, - "individualBeneficialOwners": [
- {
- "relationToBusiness": [
- "DIRECTOR"
], - "idDocument": {
- "documentType": "US_TIN",
- "uploadedDocumentId": "string"
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C"
}
], - "legalEntityBeneficialOwners": [
- {
- "idDocument": {
- "documentType": "LEGAL_ENTITY_ID_DOCUMENT",
- "uploadedDocumentId": "string"
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C"
}
], - "proofOfExistence": [
- {
- "documentType": "string",
- "uploadedDocumentId": "string"
}
], - "goodStandingCertificateDoc": {
- "documentType": "string",
- "uploadedDocumentId": "string"
}, - "governingDoc": [
- {
- "documentType": "string",
- "uploadedDocumentId": "string"
}
], - "irsEinLetterDoc": {
- "documentType": "string",
- "uploadedDocumentId": "string"
}, - "proofOfAddressDoc": {
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string"
}, - "customerId": "string",
- "companyPreAssessment": {
- "constrainedEngagementInfo": [
- "ABUSE_OF_OTHER_USERS",
- "ABUSIVE_ACTIVITY"
]
}, - "companyCustomerFinancialCondition": {
- "netEstimatedAssets": "UPTO_10K",
- "netAssetsSource": [
- "string"
]
}, - "isLegalOrIndividualOwnersExist": true,
- "isGoodStanding": true
}Response samples
- 201
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "pendingActions": [
- "BANKING_RESOLUTION_REQUIRED",
- "BENEFICIAL_OWNER_CERTIFICATE_REQUIRED"
], - "customerId": "string",
- "companyPreAssessment": {
- "constrainedEngagementInfo": [
- "ABUSE_OF_OTHER_USERS",
- "ABUSIVE_ACTIVITY"
]
}, - "businessInformation": {
- "annualRevenueType": "TRUST",
- "annualProfitType": "TRUST",
- "industryType": "Manufacturing",
- "naicsCode": "336340",
- "naicsDescription": "Motor Vehicle Brake System Manufacturing",
- "natureOfBusiness": "Producer of automotive brakes",
- "businessProductsAndServices": "Brake pads, Brake discs",
- "numberOfBranches": 5,
- "locationOfBranches": [
- {
- "country": "US",
- "state": "CA"
}
], - "noOfEmployees": 200,
- "primaryTradeAreas": [
- {
- "country": "AD",
- "expectedVolume": 25
}
], - "majorCustomers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "majorSuppliers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "nameOfPrimaryBank": "Bank of America",
- "totalOutstandingDebt": 200,
- "totalAvailableCash": 200,
- "currentBankStatementsDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "annualRevenue": 2000,
- "annualRevenueCashPercentage": 25,
- "annualProfit": 2000
}, - "companyCustomerFinancialCondition": {
- "netEstimatedAssets": "UPTO_10K",
- "netAssetsSource": [
- "string"
]
}, - "ownershipStructureChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "isLegalOrIndividualOwnersExist": true,
- "beneficialOwnersCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "individualBeneficialOwners": [
- {
- "relationToBusiness": [
- "DIRECTOR",
- "MANAGER"
], - "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "legalEntityBeneficialOwners": [
- {
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "LEGAL_ENTITY_ID_DOCUMENT",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "businessManagementOrgChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "boardDirectors": [
- {
- "countryCode": "US",
- "isDirectorManager": true,
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "managementExecutives": [
- {
- "countryCode": "US",
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "bankingResolutionDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "CERTIFICATE_OF_INCUMBENCY",
- "uploadedDocumentId": "string",
}, - "proofOfExistence": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "isGoodStanding": true,
- "goodStandingCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "governingDoc": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "irsEinLetterDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "proofOfAddressDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string",
}, - "metadata": { },
- "id": { }
}Find all Company Due Diligences
Authorizations:
query Parameters
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
| cursor | string |
| skip | number |
| limit | number |
Responses
Response samples
- 200
{- "nextCursor": "string",
- "hasMore": true,
- "totalCount": 150
}Find a specific Company Due Diligence by ID
Authorizations:
path Parameters
| companyDueDiligenceId required | string |
Responses
Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "pendingActions": [
- "BANKING_RESOLUTION_REQUIRED",
- "BENEFICIAL_OWNER_CERTIFICATE_REQUIRED"
], - "customerId": "string",
- "companyPreAssessment": {
- "constrainedEngagementInfo": [
- "ABUSE_OF_OTHER_USERS",
- "ABUSIVE_ACTIVITY"
]
}, - "businessInformation": {
- "annualRevenueType": "TRUST",
- "annualProfitType": "TRUST",
- "industryType": "Manufacturing",
- "naicsCode": "336340",
- "naicsDescription": "Motor Vehicle Brake System Manufacturing",
- "natureOfBusiness": "Producer of automotive brakes",
- "businessProductsAndServices": "Brake pads, Brake discs",
- "numberOfBranches": 5,
- "locationOfBranches": [
- {
- "country": "US",
- "state": "CA"
}
], - "noOfEmployees": 200,
- "primaryTradeAreas": [
- {
- "country": "AD",
- "expectedVolume": 25
}
], - "majorCustomers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "majorSuppliers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "nameOfPrimaryBank": "Bank of America",
- "totalOutstandingDebt": 200,
- "totalAvailableCash": 200,
- "currentBankStatementsDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "annualRevenue": 2000,
- "annualRevenueCashPercentage": 25,
- "annualProfit": 2000
}, - "companyCustomerFinancialCondition": {
- "netEstimatedAssets": "UPTO_10K",
- "netAssetsSource": [
- "string"
]
}, - "ownershipStructureChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "isLegalOrIndividualOwnersExist": true,
- "beneficialOwnersCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "individualBeneficialOwners": [
- {
- "relationToBusiness": [
- "DIRECTOR",
- "MANAGER"
], - "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "legalEntityBeneficialOwners": [
- {
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "LEGAL_ENTITY_ID_DOCUMENT",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "businessManagementOrgChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "boardDirectors": [
- {
- "countryCode": "US",
- "isDirectorManager": true,
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "managementExecutives": [
- {
- "countryCode": "US",
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "bankingResolutionDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "CERTIFICATE_OF_INCUMBENCY",
- "uploadedDocumentId": "string",
}, - "proofOfExistence": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "isGoodStanding": true,
- "goodStandingCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "governingDoc": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "irsEinLetterDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "proofOfAddressDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string",
}, - "metadata": { },
- "id": { }
}Update the Business Information for a specific Company Due Diligence
Authorizations:
path Parameters
| companyDueDiligenceId required | string |
Request Body schema: application/jsonrequired
| annualRevenueType required | string (RevenueType) Enum: "TRUST" "OTHER" | ||||
| annualProfitType required | string (RevenueType) Enum: "TRUST" "OTHER" | ||||
object (DefaultDocumentArgsDto) | |||||
| |||||
| industryType required | string Type of industry the business operates in. | ||||
| naicsCode required | string North American Industry Classification System (NAICS) code. | ||||
| naicsDescription required | string Description of the NAICS code. | ||||
| natureOfBusiness required | string Nature of the business operations. | ||||
| businessProductsAndServices required | string Primary products and services offered by the business. | ||||
| numberOfBranches required | number >= 0 Number of branches the business operates. | ||||
required | Array of objects (LocationOfBranches) Locations of business branches. | ||||
Array
| |||||
| noOfEmployees required | number >= 0 Number of employees working for the business. | ||||
required | Array of objects (PrimaryTradeAreas) Primary trade areas where the business operates. | ||||
Array
| |||||
Array of objects (CounterParties) | |||||
Array
| |||||
Array of objects (CounterParties) Major suppliers to the business. | |||||
Array
| |||||
| nameOfPrimaryBank required | string Name of the primary bank with which the business is associated. | ||||
| totalOutstandingDebt required | number >= 0 Total outstanding debt of the business. | ||||
| totalAvailableCash required | number >= 0 Total available cash of the business. | ||||
| annualRevenue required | number >= 0 Annual revenue of the business. | ||||
| annualRevenueCashPercentage required | number [ 0 .. 100 ] Percentage of annual revenue in cash. | ||||
| annualProfit required | number >= 0 Annual profit of the business. | ||||
Responses
Request samples
- Payload
{- "annualRevenueType": "TRUST",
- "annualProfitType": "TRUST",
- "currentBankStatementsDoc": {
- "documentType": "string",
- "uploadedDocumentId": "string"
}, - "industryType": "Manufacturing",
- "naicsCode": "336340",
- "naicsDescription": "Motor Vehicle Brake System Manufacturing",
- "natureOfBusiness": "Producer of automotive brakes",
- "businessProductsAndServices": "Brake pads, Brake discs",
- "numberOfBranches": 5,
- "locationOfBranches": [
- {
- "country": "US",
- "state": "CA"
}
], - "noOfEmployees": 200,
- "primaryTradeAreas": [
- {
- "country": "AD",
- "expectedVolume": 25
}
], - "majorCustomers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "majorSuppliers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "nameOfPrimaryBank": "Bank of America",
- "totalOutstandingDebt": 200,
- "totalAvailableCash": 200,
- "annualRevenue": 2000,
- "annualRevenueCashPercentage": 25,
- "annualProfit": 2000
}Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "pendingActions": [
- "BANKING_RESOLUTION_REQUIRED",
- "BENEFICIAL_OWNER_CERTIFICATE_REQUIRED"
], - "customerId": "string",
- "companyPreAssessment": {
- "constrainedEngagementInfo": [
- "ABUSE_OF_OTHER_USERS",
- "ABUSIVE_ACTIVITY"
]
}, - "businessInformation": {
- "annualRevenueType": "TRUST",
- "annualProfitType": "TRUST",
- "industryType": "Manufacturing",
- "naicsCode": "336340",
- "naicsDescription": "Motor Vehicle Brake System Manufacturing",
- "natureOfBusiness": "Producer of automotive brakes",
- "businessProductsAndServices": "Brake pads, Brake discs",
- "numberOfBranches": 5,
- "locationOfBranches": [
- {
- "country": "US",
- "state": "CA"
}
], - "noOfEmployees": 200,
- "primaryTradeAreas": [
- {
- "country": "AD",
- "expectedVolume": 25
}
], - "majorCustomers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "majorSuppliers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "nameOfPrimaryBank": "Bank of America",
- "totalOutstandingDebt": 200,
- "totalAvailableCash": 200,
- "currentBankStatementsDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "annualRevenue": 2000,
- "annualRevenueCashPercentage": 25,
- "annualProfit": 2000
}, - "companyCustomerFinancialCondition": {
- "netEstimatedAssets": "UPTO_10K",
- "netAssetsSource": [
- "string"
]
}, - "ownershipStructureChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "isLegalOrIndividualOwnersExist": true,
- "beneficialOwnersCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "individualBeneficialOwners": [
- {
- "relationToBusiness": [
- "DIRECTOR",
- "MANAGER"
], - "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "legalEntityBeneficialOwners": [
- {
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "LEGAL_ENTITY_ID_DOCUMENT",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "businessManagementOrgChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "boardDirectors": [
- {
- "countryCode": "US",
- "isDirectorManager": true,
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "managementExecutives": [
- {
- "countryCode": "US",
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "bankingResolutionDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "CERTIFICATE_OF_INCUMBENCY",
- "uploadedDocumentId": "string",
}, - "proofOfExistence": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "isGoodStanding": true,
- "goodStandingCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "governingDoc": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "irsEinLetterDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "proofOfAddressDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string",
}, - "metadata": { },
- "id": { }
}Update the Company Pre Assessment for a specific Company Due Diligence
Authorizations:
path Parameters
| companyDueDiligenceId required | string |
Request Body schema: application/jsonrequired
| constrainedEngagementInfo required | Array of arrays (CompanyDueDiligenceConstrainedEngagementCategories) Items Enum: "ABUSE_OF_OTHER_USERS" "ABUSIVE_ACTIVITY" "FRAUD" "INTELLECTUAL_PROPERTY_INFRINGEMENT" "POLICIES_AND_DOCUMENTATION" "UNLAWFUL_ACTIVITY" "UNLAWFUL_GAMBLING" "CIRCUMVENTION" "COMPETING_PRODUCT" "INTERFERENCE" "REVERSE_ENGINEER" "SUBLICENSE" "ADULT_CONTENT_AND_SERVICES" "CROWDFUNDING_OR_CROWDSOURCING" "DEALERS_OF_HIGH_VALUE_PRECIOUS_GOODS_ANTIQUES_AUCTION_HOUSES_ESTATE_AGENTS" "ILLEGAL_WILDLIFE_TRADE" "INVESTMENT_CLUBS" "MARIJUANA_RELATED_BUSINESSES" "POOLED_ASSET_VEHICLES" "PROFESSIONAL_SERVICE_PROVIDERS" "RELIGIOUS_SPIRITUAL_ORGANIZATIONS" "UNLICENSED_FINANCIAL_SERVICE_PROVIDER" "COUNTERFEIT_OR_UNAUTHORIZED_GOODS" "DRUGS_AND_DRUG_PARAPHERNALIA" "INTELLECTUAL_PROPERTY_OR_PROPRIETARY_RIGHTS_INFRINGEMENT" "MULTI_LEVEL_MARKETING" "PSEUDO_PHARMACEUTICALS" "SUBSTANCES_DESIGNED_TO_MIMIC_ILLEGAL_DRUGS" "UNFAIR_PREDATORY_OR_DECEPTIVE_PRACTICES" "BEARER_SHARE_COMPANIES_NOMINEE_DIRECTORS_OFFICERS_AND_OR_SHAREHOLDERS" "ALCOHOLIC_BEVERAGES" "BULK_SHIPMENTS_OF_CURRENCY" "CHEMICALS" "DEALERS_IN_PRECIOUS_METALS_STONES_OR_JEWELS" "DIETARY_SUPPLEMENTS" "EMBASSY_FOREIGN_CONSULATE_AND_FOREIGN_MISSION_ACCOUNTS" "FINANCIAL_INSTITUTIONS_NESTED_ACCOUNTS" "FINANCIAL_INSTITUTIONS_PAYABLE_THROUGH_ACCOUNT" "FOREIGN_GOVERNMENTS" "FOREIGN_OFFSHORE_SHELL_COMPANIES_BEARER_SHARES" "MEDICAL_DEVICES_AND_MEDICATIONS" "SHELL_BANKS" "TOBACCOS_GOODS" "REGULATED_PRODUCTS_AND_SERVICES" "UNLAWFUL_OR_ILLEGAL_ACTIVITIES" "VIOLENCE_RELATED_ACTIVITIES" "MONEY_SERVICES_BUSINESS" "AGENT_OF_AN_MSB" "OTHER_FINANCIAL_SERVICES" "PAYDAY_LENDERS" "VIRTUAL_ASSET_SERVICE_PROVIDER" "GAMES_OF_SKILL" "ARMS_DEALERS" "ARMS_DEALERS_MILITARY" "CAISNO_GAMBLING_FOREIGN" "DEPOSIT_BROKERS" "ENVIRONMENTAL_CRIMES" "INDEPENDENT_AUTOMATED_TELLER_MACHINE_OWNERS_OR_OPERATORS_INCLUDING_CRYPTO_ATMS" "INDEPENDENT_SALES_ORGANISATION" "NOMINEE_INCORPORATION_SERVICES_FIRMS_INTRODUCING_ENTITIES" "NON_GOVERNMENT_ORGANISATIONS_CHARITIES_AND_NONPROFIT_ORGANISATIONS" "NUCLEAR_ATOMIC_POWER" "OPERATORS_OF_CREDIT_CARD_SYSTEMS" "PAWNBROKERS" "PEP_FOREIGN" "PHONE_CARD_DISTRIBUTORS" "PRIVATE_MILITARY_FIRMS" "PROFESSIONAL_FOOTBALL_SOCCER_CLUBS" "SPECIALIZED_FINANCIAL_INTERMEDIARIES_PROFESSIONALS_FOREIGN" "STATE_OWNED_ENTITIES_FOREIGN" "TRAVELMARKETING" "TRAVEL_AND_TOUR_COMPANIES" "CASINO_GAMBLING_DOMESTIC" "INVESTMENT_AND_CREDIT_SERVICES" "STOCKS_AND_OTHER_SECURITY_INTERESTS" "THIRD_PARTY_PAYMENT_PROCESSORS_TPPS_PAYMENT_SERVICE_PROVIDERS_PSPS" Information related to customer engagement that might be constrained due to regulatory or policy reasons. |
Responses
Request samples
- Payload
{- "constrainedEngagementInfo": [
- "ABUSE_OF_OTHER_USERS",
- "ABUSIVE_ACTIVITY"
]
}Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "pendingActions": [
- "BANKING_RESOLUTION_REQUIRED",
- "BENEFICIAL_OWNER_CERTIFICATE_REQUIRED"
], - "customerId": "string",
- "companyPreAssessment": {
- "constrainedEngagementInfo": [
- "ABUSE_OF_OTHER_USERS",
- "ABUSIVE_ACTIVITY"
]
}, - "businessInformation": {
- "annualRevenueType": "TRUST",
- "annualProfitType": "TRUST",
- "industryType": "Manufacturing",
- "naicsCode": "336340",
- "naicsDescription": "Motor Vehicle Brake System Manufacturing",
- "natureOfBusiness": "Producer of automotive brakes",
- "businessProductsAndServices": "Brake pads, Brake discs",
- "numberOfBranches": 5,
- "locationOfBranches": [
- {
- "country": "US",
- "state": "CA"
}
], - "noOfEmployees": 200,
- "primaryTradeAreas": [
- {
- "country": "AD",
- "expectedVolume": 25
}
], - "majorCustomers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "majorSuppliers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "nameOfPrimaryBank": "Bank of America",
- "totalOutstandingDebt": 200,
- "totalAvailableCash": 200,
- "currentBankStatementsDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "annualRevenue": 2000,
- "annualRevenueCashPercentage": 25,
- "annualProfit": 2000
}, - "companyCustomerFinancialCondition": {
- "netEstimatedAssets": "UPTO_10K",
- "netAssetsSource": [
- "string"
]
}, - "ownershipStructureChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "isLegalOrIndividualOwnersExist": true,
- "beneficialOwnersCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "individualBeneficialOwners": [
- {
- "relationToBusiness": [
- "DIRECTOR",
- "MANAGER"
], - "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "legalEntityBeneficialOwners": [
- {
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "LEGAL_ENTITY_ID_DOCUMENT",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "businessManagementOrgChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "boardDirectors": [
- {
- "countryCode": "US",
- "isDirectorManager": true,
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "managementExecutives": [
- {
- "countryCode": "US",
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "bankingResolutionDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "CERTIFICATE_OF_INCUMBENCY",
- "uploadedDocumentId": "string",
}, - "proofOfExistence": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "isGoodStanding": true,
- "goodStandingCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "governingDoc": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "irsEinLetterDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "proofOfAddressDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string",
}, - "metadata": { },
- "id": { }
}Update the Customer Financial Condition for a specific Company Due Diligence
Authorizations:
path Parameters
| companyDueDiligenceId required | string |
Request Body schema: application/jsonrequired
| netEstimatedAssets required | string (AllowNetEstimatedAssetRanges) Enum: "UPTO_10K" "TEN_TO_100K" "ONEHUNDREDK_TO_1M" "ONE_TO_10M" "TEN_TO_50M" "FIFTY_TO_250M" "MORE_THAN_250M" |
required | Array of strings or NetAssetsSourceType (string) non-empty Array of NetAssetsSourceType or can have at most a unknown string value |
Array One of string | |
Responses
Request samples
- Payload
{- "netEstimatedAssets": "UPTO_10K",
- "netAssetsSource": [
- "string"
]
}Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "pendingActions": [
- "BANKING_RESOLUTION_REQUIRED",
- "BENEFICIAL_OWNER_CERTIFICATE_REQUIRED"
], - "customerId": "string",
- "companyPreAssessment": {
- "constrainedEngagementInfo": [
- "ABUSE_OF_OTHER_USERS",
- "ABUSIVE_ACTIVITY"
]
}, - "businessInformation": {
- "annualRevenueType": "TRUST",
- "annualProfitType": "TRUST",
- "industryType": "Manufacturing",
- "naicsCode": "336340",
- "naicsDescription": "Motor Vehicle Brake System Manufacturing",
- "natureOfBusiness": "Producer of automotive brakes",
- "businessProductsAndServices": "Brake pads, Brake discs",
- "numberOfBranches": 5,
- "locationOfBranches": [
- {
- "country": "US",
- "state": "CA"
}
], - "noOfEmployees": 200,
- "primaryTradeAreas": [
- {
- "country": "AD",
- "expectedVolume": 25
}
], - "majorCustomers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "majorSuppliers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "nameOfPrimaryBank": "Bank of America",
- "totalOutstandingDebt": 200,
- "totalAvailableCash": 200,
- "currentBankStatementsDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "annualRevenue": 2000,
- "annualRevenueCashPercentage": 25,
- "annualProfit": 2000
}, - "companyCustomerFinancialCondition": {
- "netEstimatedAssets": "UPTO_10K",
- "netAssetsSource": [
- "string"
]
}, - "ownershipStructureChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "isLegalOrIndividualOwnersExist": true,
- "beneficialOwnersCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "individualBeneficialOwners": [
- {
- "relationToBusiness": [
- "DIRECTOR",
- "MANAGER"
], - "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "legalEntityBeneficialOwners": [
- {
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "LEGAL_ENTITY_ID_DOCUMENT",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "businessManagementOrgChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "boardDirectors": [
- {
- "countryCode": "US",
- "isDirectorManager": true,
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "managementExecutives": [
- {
- "countryCode": "US",
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "bankingResolutionDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "CERTIFICATE_OF_INCUMBENCY",
- "uploadedDocumentId": "string",
}, - "proofOfExistence": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "isGoodStanding": true,
- "goodStandingCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "governingDoc": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "irsEinLetterDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "proofOfAddressDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string",
}, - "metadata": { },
- "id": { }
}Update the Ownership Structure Chart for a specific Company Due Diligence
Authorizations:
path Parameters
| companyDueDiligenceId required | string |
Request Body schema: application/jsonrequired
object (DefaultDocumentArgsDto) | |||||
| |||||
Responses
Request samples
- Payload
{- "ownershipStructureChart": {
- "documentType": "string",
- "uploadedDocumentId": "string"
}
}Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "pendingActions": [
- "BANKING_RESOLUTION_REQUIRED",
- "BENEFICIAL_OWNER_CERTIFICATE_REQUIRED"
], - "customerId": "string",
- "companyPreAssessment": {
- "constrainedEngagementInfo": [
- "ABUSE_OF_OTHER_USERS",
- "ABUSIVE_ACTIVITY"
]
}, - "businessInformation": {
- "annualRevenueType": "TRUST",
- "annualProfitType": "TRUST",
- "industryType": "Manufacturing",
- "naicsCode": "336340",
- "naicsDescription": "Motor Vehicle Brake System Manufacturing",
- "natureOfBusiness": "Producer of automotive brakes",
- "businessProductsAndServices": "Brake pads, Brake discs",
- "numberOfBranches": 5,
- "locationOfBranches": [
- {
- "country": "US",
- "state": "CA"
}
], - "noOfEmployees": 200,
- "primaryTradeAreas": [
- {
- "country": "AD",
- "expectedVolume": 25
}
], - "majorCustomers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "majorSuppliers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "nameOfPrimaryBank": "Bank of America",
- "totalOutstandingDebt": 200,
- "totalAvailableCash": 200,
- "currentBankStatementsDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "annualRevenue": 2000,
- "annualRevenueCashPercentage": 25,
- "annualProfit": 2000
}, - "companyCustomerFinancialCondition": {
- "netEstimatedAssets": "UPTO_10K",
- "netAssetsSource": [
- "string"
]
}, - "ownershipStructureChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "isLegalOrIndividualOwnersExist": true,
- "beneficialOwnersCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "individualBeneficialOwners": [
- {
- "relationToBusiness": [
- "DIRECTOR",
- "MANAGER"
], - "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "legalEntityBeneficialOwners": [
- {
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "LEGAL_ENTITY_ID_DOCUMENT",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "businessManagementOrgChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "boardDirectors": [
- {
- "countryCode": "US",
- "isDirectorManager": true,
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "managementExecutives": [
- {
- "countryCode": "US",
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "bankingResolutionDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "CERTIFICATE_OF_INCUMBENCY",
- "uploadedDocumentId": "string",
}, - "proofOfExistence": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "isGoodStanding": true,
- "goodStandingCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "governingDoc": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "irsEinLetterDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "proofOfAddressDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string",
}, - "metadata": { },
- "id": { }
}Update the Business Management Organization Chart for a specific Company Due Diligence
Authorizations:
path Parameters
| companyDueDiligenceId required | string |
Request Body schema: application/jsonrequired
object (DefaultDocumentArgsDto) | |||||
| |||||
Responses
Request samples
- Payload
{- "businessManagementOrgChart": {
- "documentType": "string",
- "uploadedDocumentId": "string"
}
}Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "pendingActions": [
- "BANKING_RESOLUTION_REQUIRED",
- "BENEFICIAL_OWNER_CERTIFICATE_REQUIRED"
], - "customerId": "string",
- "companyPreAssessment": {
- "constrainedEngagementInfo": [
- "ABUSE_OF_OTHER_USERS",
- "ABUSIVE_ACTIVITY"
]
}, - "businessInformation": {
- "annualRevenueType": "TRUST",
- "annualProfitType": "TRUST",
- "industryType": "Manufacturing",
- "naicsCode": "336340",
- "naicsDescription": "Motor Vehicle Brake System Manufacturing",
- "natureOfBusiness": "Producer of automotive brakes",
- "businessProductsAndServices": "Brake pads, Brake discs",
- "numberOfBranches": 5,
- "locationOfBranches": [
- {
- "country": "US",
- "state": "CA"
}
], - "noOfEmployees": 200,
- "primaryTradeAreas": [
- {
- "country": "AD",
- "expectedVolume": 25
}
], - "majorCustomers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "majorSuppliers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "nameOfPrimaryBank": "Bank of America",
- "totalOutstandingDebt": 200,
- "totalAvailableCash": 200,
- "currentBankStatementsDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "annualRevenue": 2000,
- "annualRevenueCashPercentage": 25,
- "annualProfit": 2000
}, - "companyCustomerFinancialCondition": {
- "netEstimatedAssets": "UPTO_10K",
- "netAssetsSource": [
- "string"
]
}, - "ownershipStructureChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "isLegalOrIndividualOwnersExist": true,
- "beneficialOwnersCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "individualBeneficialOwners": [
- {
- "relationToBusiness": [
- "DIRECTOR",
- "MANAGER"
], - "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "legalEntityBeneficialOwners": [
- {
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "LEGAL_ENTITY_ID_DOCUMENT",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "businessManagementOrgChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "boardDirectors": [
- {
- "countryCode": "US",
- "isDirectorManager": true,
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "managementExecutives": [
- {
- "countryCode": "US",
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "bankingResolutionDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "CERTIFICATE_OF_INCUMBENCY",
- "uploadedDocumentId": "string",
}, - "proofOfExistence": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "isGoodStanding": true,
- "goodStandingCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "governingDoc": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "irsEinLetterDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "proofOfAddressDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string",
}, - "metadata": { },
- "id": { }
}Update the Executive Information for a specific Company Due Diligence
Authorizations:
path Parameters
| companyDueDiligenceId required | string |
Request Body schema: application/jsonrequired
| executiveType required | string (BusinessExecutiveType) Enum: "INDIVIDUAL_BENEFICIAL_OWNER" "LEGAL_ENTITY_BENEFICIAL_OWNER" "MANAGEMENT_EXECUTIVE" "BOARD_DIRECTOR" | ||||||||||||||||||||||||||||||||
object Board director information. | |||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||
object Management executive information. | |||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||
object Individual beneficial owner information. | |||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||
object Legal entity beneficial owner information. | |||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||
Responses
Request samples
- Payload
{- "executiveType": "INDIVIDUAL_BENEFICIAL_OWNER",
- "boardDirector": {
- "isDirectorManager": true,
- "positionTitle": "string",
- "countryCode": "AD",
- "state": "string",
- "idDocument": {
- "documentType": "US_TIN",
- "uploadedDocumentId": "string"
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}, - "managementExecutive": {
- "positionTitle": "string",
- "countryCode": "AD",
- "state": "string",
- "idDocument": {
- "documentType": "US_TIN",
- "uploadedDocumentId": "string"
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}, - "individualBeneficialOwner": {
- "relationToBusiness": [
- "DIRECTOR"
], - "idDocument": {
- "documentType": "US_TIN",
- "uploadedDocumentId": "string"
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}, - "legalEntityBeneficialOwner": {
- "idDocument": {
- "documentType": "LEGAL_ENTITY_ID_DOCUMENT",
- "uploadedDocumentId": "string"
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
}Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "pendingActions": [
- "BANKING_RESOLUTION_REQUIRED",
- "BENEFICIAL_OWNER_CERTIFICATE_REQUIRED"
], - "customerId": "string",
- "companyPreAssessment": {
- "constrainedEngagementInfo": [
- "ABUSE_OF_OTHER_USERS",
- "ABUSIVE_ACTIVITY"
]
}, - "businessInformation": {
- "annualRevenueType": "TRUST",
- "annualProfitType": "TRUST",
- "industryType": "Manufacturing",
- "naicsCode": "336340",
- "naicsDescription": "Motor Vehicle Brake System Manufacturing",
- "natureOfBusiness": "Producer of automotive brakes",
- "businessProductsAndServices": "Brake pads, Brake discs",
- "numberOfBranches": 5,
- "locationOfBranches": [
- {
- "country": "US",
- "state": "CA"
}
], - "noOfEmployees": 200,
- "primaryTradeAreas": [
- {
- "country": "AD",
- "expectedVolume": 25
}
], - "majorCustomers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "majorSuppliers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "nameOfPrimaryBank": "Bank of America",
- "totalOutstandingDebt": 200,
- "totalAvailableCash": 200,
- "currentBankStatementsDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "annualRevenue": 2000,
- "annualRevenueCashPercentage": 25,
- "annualProfit": 2000
}, - "companyCustomerFinancialCondition": {
- "netEstimatedAssets": "UPTO_10K",
- "netAssetsSource": [
- "string"
]
}, - "ownershipStructureChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "isLegalOrIndividualOwnersExist": true,
- "beneficialOwnersCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "individualBeneficialOwners": [
- {
- "relationToBusiness": [
- "DIRECTOR",
- "MANAGER"
], - "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "legalEntityBeneficialOwners": [
- {
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "LEGAL_ENTITY_ID_DOCUMENT",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "businessManagementOrgChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "boardDirectors": [
- {
- "countryCode": "US",
- "isDirectorManager": true,
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "managementExecutives": [
- {
- "countryCode": "US",
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "bankingResolutionDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "CERTIFICATE_OF_INCUMBENCY",
- "uploadedDocumentId": "string",
}, - "proofOfExistence": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "isGoodStanding": true,
- "goodStandingCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "governingDoc": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "irsEinLetterDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "proofOfAddressDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string",
}, - "metadata": { },
- "id": { }
}Update the Banking Resolution for a specific Company Due Diligence
Authorizations:
path Parameters
| companyDueDiligenceId required | string |
Request Body schema: application/jsonrequired
object (BankingDocDocumentArgsDto) | |||||
| |||||
Responses
Request samples
- Payload
{- "bankingResolutionDoc": {
- "documentType": "CERTIFICATE_OF_INCUMBENCY",
- "uploadedDocumentId": "string"
}
}Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "pendingActions": [
- "BANKING_RESOLUTION_REQUIRED",
- "BENEFICIAL_OWNER_CERTIFICATE_REQUIRED"
], - "customerId": "string",
- "companyPreAssessment": {
- "constrainedEngagementInfo": [
- "ABUSE_OF_OTHER_USERS",
- "ABUSIVE_ACTIVITY"
]
}, - "businessInformation": {
- "annualRevenueType": "TRUST",
- "annualProfitType": "TRUST",
- "industryType": "Manufacturing",
- "naicsCode": "336340",
- "naicsDescription": "Motor Vehicle Brake System Manufacturing",
- "natureOfBusiness": "Producer of automotive brakes",
- "businessProductsAndServices": "Brake pads, Brake discs",
- "numberOfBranches": 5,
- "locationOfBranches": [
- {
- "country": "US",
- "state": "CA"
}
], - "noOfEmployees": 200,
- "primaryTradeAreas": [
- {
- "country": "AD",
- "expectedVolume": 25
}
], - "majorCustomers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "majorSuppliers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "nameOfPrimaryBank": "Bank of America",
- "totalOutstandingDebt": 200,
- "totalAvailableCash": 200,
- "currentBankStatementsDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "annualRevenue": 2000,
- "annualRevenueCashPercentage": 25,
- "annualProfit": 2000
}, - "companyCustomerFinancialCondition": {
- "netEstimatedAssets": "UPTO_10K",
- "netAssetsSource": [
- "string"
]
}, - "ownershipStructureChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "isLegalOrIndividualOwnersExist": true,
- "beneficialOwnersCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "individualBeneficialOwners": [
- {
- "relationToBusiness": [
- "DIRECTOR",
- "MANAGER"
], - "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "legalEntityBeneficialOwners": [
- {
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "LEGAL_ENTITY_ID_DOCUMENT",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "businessManagementOrgChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "boardDirectors": [
- {
- "countryCode": "US",
- "isDirectorManager": true,
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "managementExecutives": [
- {
- "countryCode": "US",
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "bankingResolutionDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "CERTIFICATE_OF_INCUMBENCY",
- "uploadedDocumentId": "string",
}, - "proofOfExistence": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "isGoodStanding": true,
- "goodStandingCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "governingDoc": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "irsEinLetterDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "proofOfAddressDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string",
}, - "metadata": { },
- "id": { }
}Update the Beneficial Owners Certificate for a specific Company Due Diligence
Authorizations:
path Parameters
| companyDueDiligenceId required | string |
Request Body schema: application/jsonrequired
object (DefaultDocumentArgsDto) | |||||
| |||||
Responses
Request samples
- Payload
{- "beneficialOwnersCertificateDoc": {
- "documentType": "string",
- "uploadedDocumentId": "string"
}
}Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "pendingActions": [
- "BANKING_RESOLUTION_REQUIRED",
- "BENEFICIAL_OWNER_CERTIFICATE_REQUIRED"
], - "customerId": "string",
- "companyPreAssessment": {
- "constrainedEngagementInfo": [
- "ABUSE_OF_OTHER_USERS",
- "ABUSIVE_ACTIVITY"
]
}, - "businessInformation": {
- "annualRevenueType": "TRUST",
- "annualProfitType": "TRUST",
- "industryType": "Manufacturing",
- "naicsCode": "336340",
- "naicsDescription": "Motor Vehicle Brake System Manufacturing",
- "natureOfBusiness": "Producer of automotive brakes",
- "businessProductsAndServices": "Brake pads, Brake discs",
- "numberOfBranches": 5,
- "locationOfBranches": [
- {
- "country": "US",
- "state": "CA"
}
], - "noOfEmployees": 200,
- "primaryTradeAreas": [
- {
- "country": "AD",
- "expectedVolume": 25
}
], - "majorCustomers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "majorSuppliers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "nameOfPrimaryBank": "Bank of America",
- "totalOutstandingDebt": 200,
- "totalAvailableCash": 200,
- "currentBankStatementsDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "annualRevenue": 2000,
- "annualRevenueCashPercentage": 25,
- "annualProfit": 2000
}, - "companyCustomerFinancialCondition": {
- "netEstimatedAssets": "UPTO_10K",
- "netAssetsSource": [
- "string"
]
}, - "ownershipStructureChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "isLegalOrIndividualOwnersExist": true,
- "beneficialOwnersCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "individualBeneficialOwners": [
- {
- "relationToBusiness": [
- "DIRECTOR",
- "MANAGER"
], - "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "legalEntityBeneficialOwners": [
- {
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "LEGAL_ENTITY_ID_DOCUMENT",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "businessManagementOrgChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "boardDirectors": [
- {
- "countryCode": "US",
- "isDirectorManager": true,
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "managementExecutives": [
- {
- "countryCode": "US",
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "bankingResolutionDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "CERTIFICATE_OF_INCUMBENCY",
- "uploadedDocumentId": "string",
}, - "proofOfExistence": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "isGoodStanding": true,
- "goodStandingCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "governingDoc": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "irsEinLetterDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "proofOfAddressDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string",
}, - "metadata": { },
- "id": { }
}Update the Business Formation and Govering Documents for a specific Company Due Diligence
Authorizations:
path Parameters
| companyDueDiligenceId required | string |
Request Body schema: application/jsonrequired
Array of objects (DefaultDocumentArgsDto) | |||||
Array
| |||||
| isGoodStanding | boolean Indicates whether the company is in good standing legally and financially. | ||||
object (DefaultDocumentArgsDto) | |||||
| |||||
Array of objects (DefaultDocumentArgsDto) | |||||
Array
| |||||
object (DefaultDocumentArgsDto) | |||||
| |||||
Responses
Request samples
- Payload
{- "proofOfExistence": [
- {
- "documentType": "string",
- "uploadedDocumentId": "string"
}
], - "isGoodStanding": true,
- "goodStandingCertificateDoc": {
- "documentType": "string",
- "uploadedDocumentId": "string"
}, - "governingDoc": [
- {
- "documentType": "string",
- "uploadedDocumentId": "string"
}
], - "irsEinLetterDoc": {
- "documentType": "string",
- "uploadedDocumentId": "string"
}
}Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "pendingActions": [
- "BANKING_RESOLUTION_REQUIRED",
- "BENEFICIAL_OWNER_CERTIFICATE_REQUIRED"
], - "customerId": "string",
- "companyPreAssessment": {
- "constrainedEngagementInfo": [
- "ABUSE_OF_OTHER_USERS",
- "ABUSIVE_ACTIVITY"
]
}, - "businessInformation": {
- "annualRevenueType": "TRUST",
- "annualProfitType": "TRUST",
- "industryType": "Manufacturing",
- "naicsCode": "336340",
- "naicsDescription": "Motor Vehicle Brake System Manufacturing",
- "natureOfBusiness": "Producer of automotive brakes",
- "businessProductsAndServices": "Brake pads, Brake discs",
- "numberOfBranches": 5,
- "locationOfBranches": [
- {
- "country": "US",
- "state": "CA"
}
], - "noOfEmployees": 200,
- "primaryTradeAreas": [
- {
- "country": "AD",
- "expectedVolume": 25
}
], - "majorCustomers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "majorSuppliers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "nameOfPrimaryBank": "Bank of America",
- "totalOutstandingDebt": 200,
- "totalAvailableCash": 200,
- "currentBankStatementsDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "annualRevenue": 2000,
- "annualRevenueCashPercentage": 25,
- "annualProfit": 2000
}, - "companyCustomerFinancialCondition": {
- "netEstimatedAssets": "UPTO_10K",
- "netAssetsSource": [
- "string"
]
}, - "ownershipStructureChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "isLegalOrIndividualOwnersExist": true,
- "beneficialOwnersCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "individualBeneficialOwners": [
- {
- "relationToBusiness": [
- "DIRECTOR",
- "MANAGER"
], - "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "legalEntityBeneficialOwners": [
- {
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "LEGAL_ENTITY_ID_DOCUMENT",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "businessManagementOrgChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "boardDirectors": [
- {
- "countryCode": "US",
- "isDirectorManager": true,
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "managementExecutives": [
- {
- "countryCode": "US",
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "bankingResolutionDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "CERTIFICATE_OF_INCUMBENCY",
- "uploadedDocumentId": "string",
}, - "proofOfExistence": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "isGoodStanding": true,
- "goodStandingCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "governingDoc": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "irsEinLetterDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "proofOfAddressDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string",
}, - "metadata": { },
- "id": { }
}Update the Proof of Address for a specific Company Due Diligence
Authorizations:
path Parameters
| companyDueDiligenceId required | string |
Request Body schema: application/jsonrequired
object (ProofOfAddressArgsDto) | |||||
| |||||
Responses
Request samples
- Payload
{- "proofOfAddressDoc": {
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string"
}
}Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "pendingActions": [
- "BANKING_RESOLUTION_REQUIRED",
- "BENEFICIAL_OWNER_CERTIFICATE_REQUIRED"
], - "customerId": "string",
- "companyPreAssessment": {
- "constrainedEngagementInfo": [
- "ABUSE_OF_OTHER_USERS",
- "ABUSIVE_ACTIVITY"
]
}, - "businessInformation": {
- "annualRevenueType": "TRUST",
- "annualProfitType": "TRUST",
- "industryType": "Manufacturing",
- "naicsCode": "336340",
- "naicsDescription": "Motor Vehicle Brake System Manufacturing",
- "natureOfBusiness": "Producer of automotive brakes",
- "businessProductsAndServices": "Brake pads, Brake discs",
- "numberOfBranches": 5,
- "locationOfBranches": [
- {
- "country": "US",
- "state": "CA"
}
], - "noOfEmployees": 200,
- "primaryTradeAreas": [
- {
- "country": "AD",
- "expectedVolume": 25
}
], - "majorCustomers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "majorSuppliers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "nameOfPrimaryBank": "Bank of America",
- "totalOutstandingDebt": 200,
- "totalAvailableCash": 200,
- "currentBankStatementsDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "annualRevenue": 2000,
- "annualRevenueCashPercentage": 25,
- "annualProfit": 2000
}, - "companyCustomerFinancialCondition": {
- "netEstimatedAssets": "UPTO_10K",
- "netAssetsSource": [
- "string"
]
}, - "ownershipStructureChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "isLegalOrIndividualOwnersExist": true,
- "beneficialOwnersCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "individualBeneficialOwners": [
- {
- "relationToBusiness": [
- "DIRECTOR",
- "MANAGER"
], - "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "legalEntityBeneficialOwners": [
- {
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "LEGAL_ENTITY_ID_DOCUMENT",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "businessManagementOrgChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "boardDirectors": [
- {
- "countryCode": "US",
- "isDirectorManager": true,
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "managementExecutives": [
- {
- "countryCode": "US",
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "bankingResolutionDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "CERTIFICATE_OF_INCUMBENCY",
- "uploadedDocumentId": "string",
}, - "proofOfExistence": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "isGoodStanding": true,
- "goodStandingCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "governingDoc": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "irsEinLetterDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "proofOfAddressDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string",
}, - "metadata": { },
- "id": { }
}Update No Owner Exists for a specific Company Due Diligence
Authorizations:
path Parameters
| companyDueDiligenceId required | string |
Responses
Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "pendingActions": [
- "BANKING_RESOLUTION_REQUIRED",
- "BENEFICIAL_OWNER_CERTIFICATE_REQUIRED"
], - "customerId": "string",
- "companyPreAssessment": {
- "constrainedEngagementInfo": [
- "ABUSE_OF_OTHER_USERS",
- "ABUSIVE_ACTIVITY"
]
}, - "businessInformation": {
- "annualRevenueType": "TRUST",
- "annualProfitType": "TRUST",
- "industryType": "Manufacturing",
- "naicsCode": "336340",
- "naicsDescription": "Motor Vehicle Brake System Manufacturing",
- "natureOfBusiness": "Producer of automotive brakes",
- "businessProductsAndServices": "Brake pads, Brake discs",
- "numberOfBranches": 5,
- "locationOfBranches": [
- {
- "country": "US",
- "state": "CA"
}
], - "noOfEmployees": 200,
- "primaryTradeAreas": [
- {
- "country": "AD",
- "expectedVolume": 25
}
], - "majorCustomers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "majorSuppliers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "nameOfPrimaryBank": "Bank of America",
- "totalOutstandingDebt": 200,
- "totalAvailableCash": 200,
- "currentBankStatementsDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "annualRevenue": 2000,
- "annualRevenueCashPercentage": 25,
- "annualProfit": 2000
}, - "companyCustomerFinancialCondition": {
- "netEstimatedAssets": "UPTO_10K",
- "netAssetsSource": [
- "string"
]
}, - "ownershipStructureChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "isLegalOrIndividualOwnersExist": true,
- "beneficialOwnersCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "individualBeneficialOwners": [
- {
- "relationToBusiness": [
- "DIRECTOR",
- "MANAGER"
], - "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "legalEntityBeneficialOwners": [
- {
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "LEGAL_ENTITY_ID_DOCUMENT",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "businessManagementOrgChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "boardDirectors": [
- {
- "countryCode": "US",
- "isDirectorManager": true,
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "managementExecutives": [
- {
- "countryCode": "US",
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "bankingResolutionDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "CERTIFICATE_OF_INCUMBENCY",
- "uploadedDocumentId": "string",
}, - "proofOfExistence": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "isGoodStanding": true,
- "goodStandingCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "governingDoc": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "irsEinLetterDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "proofOfAddressDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string",
}, - "metadata": { },
- "id": { }
}Delete the Executive by Type for a specific Company Due Diligence
Authorizations:
path Parameters
| companyDueDiligenceId required | string |
Request Body schema: application/jsonrequired
| executiveTypes required | Array of strings (BusinessExecutiveType) Items Enum: "INDIVIDUAL_BENEFICIAL_OWNER" "LEGAL_ENTITY_BENEFICIAL_OWNER" "MANAGEMENT_EXECUTIVE" "BOARD_DIRECTOR" |
Responses
Request samples
- Payload
{- "executiveTypes": [
- "INDIVIDUAL_BENEFICIAL_OWNER"
]
}Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "pendingActions": [
- "BANKING_RESOLUTION_REQUIRED",
- "BENEFICIAL_OWNER_CERTIFICATE_REQUIRED"
], - "customerId": "string",
- "companyPreAssessment": {
- "constrainedEngagementInfo": [
- "ABUSE_OF_OTHER_USERS",
- "ABUSIVE_ACTIVITY"
]
}, - "businessInformation": {
- "annualRevenueType": "TRUST",
- "annualProfitType": "TRUST",
- "industryType": "Manufacturing",
- "naicsCode": "336340",
- "naicsDescription": "Motor Vehicle Brake System Manufacturing",
- "natureOfBusiness": "Producer of automotive brakes",
- "businessProductsAndServices": "Brake pads, Brake discs",
- "numberOfBranches": 5,
- "locationOfBranches": [
- {
- "country": "US",
- "state": "CA"
}
], - "noOfEmployees": 200,
- "primaryTradeAreas": [
- {
- "country": "AD",
- "expectedVolume": 25
}
], - "majorCustomers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "majorSuppliers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "nameOfPrimaryBank": "Bank of America",
- "totalOutstandingDebt": 200,
- "totalAvailableCash": 200,
- "currentBankStatementsDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "annualRevenue": 2000,
- "annualRevenueCashPercentage": 25,
- "annualProfit": 2000
}, - "companyCustomerFinancialCondition": {
- "netEstimatedAssets": "UPTO_10K",
- "netAssetsSource": [
- "string"
]
}, - "ownershipStructureChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "isLegalOrIndividualOwnersExist": true,
- "beneficialOwnersCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "individualBeneficialOwners": [
- {
- "relationToBusiness": [
- "DIRECTOR",
- "MANAGER"
], - "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "legalEntityBeneficialOwners": [
- {
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "LEGAL_ENTITY_ID_DOCUMENT",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "businessManagementOrgChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "boardDirectors": [
- {
- "countryCode": "US",
- "isDirectorManager": true,
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "managementExecutives": [
- {
- "countryCode": "US",
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "bankingResolutionDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "CERTIFICATE_OF_INCUMBENCY",
- "uploadedDocumentId": "string",
}, - "proofOfExistence": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "isGoodStanding": true,
- "goodStandingCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "governingDoc": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "irsEinLetterDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "proofOfAddressDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string",
}, - "metadata": { },
- "id": { }
}Delete the Executive by ID for a specific Company Due Diligence
Authorizations:
path Parameters
| companyDueDiligenceId required | string |
Request Body schema: application/jsonrequired
| executiveType required | string (BusinessExecutiveType) Enum: "INDIVIDUAL_BENEFICIAL_OWNER" "LEGAL_ENTITY_BENEFICIAL_OWNER" "MANAGEMENT_EXECUTIVE" "BOARD_DIRECTOR" |
| executiveId required | string |
Responses
Request samples
- Payload
{- "executiveType": "INDIVIDUAL_BENEFICIAL_OWNER",
- "executiveId": "string"
}Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "pendingActions": [
- "BANKING_RESOLUTION_REQUIRED",
- "BENEFICIAL_OWNER_CERTIFICATE_REQUIRED"
], - "customerId": "string",
- "companyPreAssessment": {
- "constrainedEngagementInfo": [
- "ABUSE_OF_OTHER_USERS",
- "ABUSIVE_ACTIVITY"
]
}, - "businessInformation": {
- "annualRevenueType": "TRUST",
- "annualProfitType": "TRUST",
- "industryType": "Manufacturing",
- "naicsCode": "336340",
- "naicsDescription": "Motor Vehicle Brake System Manufacturing",
- "natureOfBusiness": "Producer of automotive brakes",
- "businessProductsAndServices": "Brake pads, Brake discs",
- "numberOfBranches": 5,
- "locationOfBranches": [
- {
- "country": "US",
- "state": "CA"
}
], - "noOfEmployees": 200,
- "primaryTradeAreas": [
- {
- "country": "AD",
- "expectedVolume": 25
}
], - "majorCustomers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "majorSuppliers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "nameOfPrimaryBank": "Bank of America",
- "totalOutstandingDebt": 200,
- "totalAvailableCash": 200,
- "currentBankStatementsDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "annualRevenue": 2000,
- "annualRevenueCashPercentage": 25,
- "annualProfit": 2000
}, - "companyCustomerFinancialCondition": {
- "netEstimatedAssets": "UPTO_10K",
- "netAssetsSource": [
- "string"
]
}, - "ownershipStructureChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "isLegalOrIndividualOwnersExist": true,
- "beneficialOwnersCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "individualBeneficialOwners": [
- {
- "relationToBusiness": [
- "DIRECTOR",
- "MANAGER"
], - "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "legalEntityBeneficialOwners": [
- {
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "LEGAL_ENTITY_ID_DOCUMENT",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "businessManagementOrgChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "boardDirectors": [
- {
- "countryCode": "US",
- "isDirectorManager": true,
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "managementExecutives": [
- {
- "countryCode": "US",
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "bankingResolutionDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "CERTIFICATE_OF_INCUMBENCY",
- "uploadedDocumentId": "string",
}, - "proofOfExistence": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "isGoodStanding": true,
- "goodStandingCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "governingDoc": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "irsEinLetterDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "proofOfAddressDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string",
}, - "metadata": { },
- "id": { }
}Check Access for a specific Company Due Diligence
Authorizations:
path Parameters
| companyDueDiligenceId required | string |
| customerId required | string |
Responses
Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "pendingActions": [
- "BANKING_RESOLUTION_REQUIRED",
- "BENEFICIAL_OWNER_CERTIFICATE_REQUIRED"
], - "customerId": "string",
- "companyPreAssessment": {
- "constrainedEngagementInfo": [
- "ABUSE_OF_OTHER_USERS",
- "ABUSIVE_ACTIVITY"
]
}, - "businessInformation": {
- "annualRevenueType": "TRUST",
- "annualProfitType": "TRUST",
- "industryType": "Manufacturing",
- "naicsCode": "336340",
- "naicsDescription": "Motor Vehicle Brake System Manufacturing",
- "natureOfBusiness": "Producer of automotive brakes",
- "businessProductsAndServices": "Brake pads, Brake discs",
- "numberOfBranches": 5,
- "locationOfBranches": [
- {
- "country": "US",
- "state": "CA"
}
], - "noOfEmployees": 200,
- "primaryTradeAreas": [
- {
- "country": "AD",
- "expectedVolume": 25
}
], - "majorCustomers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "majorSuppliers": [
- {
- "country": "US",
- "name": "Doe Industries"
}
], - "nameOfPrimaryBank": "Bank of America",
- "totalOutstandingDebt": 200,
- "totalAvailableCash": 200,
- "currentBankStatementsDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "annualRevenue": 2000,
- "annualRevenueCashPercentage": 25,
- "annualProfit": 2000
}, - "companyCustomerFinancialCondition": {
- "netEstimatedAssets": "UPTO_10K",
- "netAssetsSource": [
- "string"
]
}, - "ownershipStructureChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "isLegalOrIndividualOwnersExist": true,
- "beneficialOwnersCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "individualBeneficialOwners": [
- {
- "relationToBusiness": [
- "DIRECTOR",
- "MANAGER"
], - "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "legalEntityBeneficialOwners": [
- {
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "LEGAL_ENTITY_ID_DOCUMENT",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "businessManagementOrgChart": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "boardDirectors": [
- {
- "countryCode": "US",
- "isDirectorManager": true,
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "managementExecutives": [
- {
- "countryCode": "US",
- "positionTitle": "Chief Financial Officer",
- "state": "CA",
- "idDocument": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "US_TIN",
- "uploadedDocumentId": "string",
}, - "fullLegalName": "John Doe Enterprises LLC",
- "address": "1234 Elm Street, Springfield, USA",
- "shareOwnership": 75,
- "llcMembership": 35,
- "partnershipAllocation": 50,
- "otherInterestOwnership": 10,
- "identificationString": "AB123456C",
- "id": "string"
}
], - "bankingResolutionDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "CERTIFICATE_OF_INCUMBENCY",
- "uploadedDocumentId": "string",
}, - "proofOfExistence": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "isGoodStanding": true,
- "goodStandingCertificateDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "governingDoc": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}
], - "irsEinLetterDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "string",
- "uploadedDocumentId": "string",
}, - "proofOfAddressDoc": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "UTILITY_BILL",
- "uploadedDocumentId": "string",
}, - "metadata": { },
- "id": { }
}Find a specific pull Deposit Details
Authorizations:
path Parameters
| depositId required | string |
query Parameters
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) |
Responses
Response samples
- 200
{- "depositType": "PUSH",
- "depositStatus": "REQUESTED",
- "id": "string",
- "customerId": "string",
- "createdAt": "2024-04-26T12:00:00Z",
- "amount": 1000,
- "reference": "Payment for services",
- "destinationAccountAssetId": "string",
- "destinationAssetsTypeId": "string",
- "sourceCounterpartyId": "string",
- "sourceAssetTypeId": "string"
}Create a Push Deposit
Authorizations:
Request Body schema: application/jsonrequired
| accountAssetId required | string The account asset ID. |
Responses
Request samples
- Payload
{- "accountAssetId": "string"
}Response samples
- 201
{- "depositStatus": "REQUESTED",
- "createdAt": "string",
- "depositType": "PUSH",
- "depositInstructions": [
- {
- "instructionType": "CRYPTO",
- "address": "string",
- "blockchain": "string",
- "network": "string",
- "assetTypeId": "string",
- "accountHolderName": "string",
- "accountNumber": "string",
- "accountRoutingNumber": "string",
- "accountHolderAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "swiftBic": "string",
- "institutionName": "string",
- "institutionAddress": {
- "countryCode": "AD",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "state": "string",
- "postalCode": "string"
}, - "memo": "string",
- "description": "string"
}
], - "destinationAccountAssetId": "string",
- "destinationAssetsTypeId": "string",
- "customerId": "string"
}Create a Pull Deposit
Authorizations:
Request Body schema: application/jsonrequired
| sourceCounterpartyId required | string The ID of the source counterparty. |
| amount required | number >= 1 The amount of the deposit. |
| reference | string The reference associated with the deposit. |
| accountAssetId required | string The account asset ID. |
Responses
Request samples
- Payload
{- "sourceCounterpartyId": "string",
- "amount": 1000,
- "reference": "Payment for services",
- "accountAssetId": "string"
}Response samples
- 201
{- "depositType": "PUSH",
- "depositStatus": "REQUESTED",
- "id": "string",
- "customerId": "string",
- "createdAt": "2024-04-26T12:00:00Z",
- "amount": 1000,
- "reference": "Payment for services",
- "destinationAccountAssetId": "string",
- "destinationAssetsTypeId": "string",
- "sourceCounterpartyId": "string",
- "sourceAssetTypeId": "string"
}Find all pull Deposits
Authorizations:
query Parameters
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
| cursor | string |
| skip | number |
| limit | number |
Responses
Response samples
- 200
{- "depositDocuments": [
- {
- "depositType": "PUSH",
- "depositStatus": "REQUESTED",
- "id": "string",
- "customerId": "string",
- "createdAt": "2024-04-26T12:00:00Z",
- "amount": 1000,
- "reference": "Payment for services",
- "destinationAccountAssetId": "string",
- "destinationAssetsTypeId": "string",
- "sourceCounterpartyId": "string",
- "sourceAssetTypeId": "string"
}
], - "nextCursor": "string",
- "hasMore": true,
- "totalCount": 150
}Response samples
- 201
{- "depositType": "PUSH",
- "depositStatus": "REQUESTED",
- "id": "string",
- "customerId": "string",
- "createdAt": "2024-04-26T12:00:00Z",
- "amount": 1000,
- "reference": "Payment for services",
- "destinationAccountAssetId": "string",
- "destinationAssetsTypeId": "string",
- "sourceCounterpartyId": "string",
- "sourceAssetTypeId": "string"
}Create a Counter Party
Authorizations:
Request Body schema: application/jsonrequired
| counterpartyType required | string (CounterpartyType) Enum: "FIAT_US" "FIAT_CA" "FIAT_EU" "FIAT_GB" "FIAT_MX" "FIAT_BS" "FIAT_CN" "FIAT_SG" "FIAT_HK" "FIAT_PA" "FIAT_MY" "FIAT_JP" "FIAT_AE" "FIAT_BR" "FIAT_CH" "FIAT_SA" "FIAT_GT" "FIAT_QA" "FIAT_BH" "FIAT_CR" "FIAT_TR" "FIAT_GL" "FIAT_PL" "FIAT_US_LINKED" "BASIC" | ||||||||||||||||||||||||||||||
| supportedRails required | Array of arrays (SupportedRails) Items Enum: "ACH" "FEDWIRE" "SWIFT" Supported transaction rails for the counterparty. | ||||||||||||||||||||||||||||||
| profileType required | string (ProfileType) Enum: "INDIVIDUAL" "CORPORATION" | ||||||||||||||||||||||||||||||
required | IndividualAccountHolderProfile (object) or CorporationAccountHolderProfile (object) Profile information for the counterparty, detailing personal and business- related data | ||||||||||||||||||||||||||||||
One of
| |||||||||||||||||||||||||||||||
| customerId required | string Customer ID associated with the counterparty. | ||||||||||||||||||||||||||||||
| creatorUserId | string User ID of the creator. | ||||||||||||||||||||||||||||||
| description required | string Description or additional details about the counterparty. | ||||||||||||||||||||||||||||||
required | object Bank account information associated with the counterparty. | ||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||
object Information about intermediary institutions involved with the counterparty. | |||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||
Responses
Request samples
- Payload
{- "counterpartyType": "FIAT_US",
- "supportedRails": "ACH",
- "profileType": "INDIVIDUAL",
- "profile": {
- "relationshipToCustomer": "SPOUSE",
- "firstName": "John",
- "lastName": "Doe",
- "dateOfBirth": "1980-04-15",
- "email": "john.doe@example.com",
- "telephoneNumber": "+1234567890",
- "taxReferenceNumber": "123-45-6789",
- "address": {
- "countryCode": "AD",
- "state": "string",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "postalCode": "string"
}
}, - "customerId": "string",
- "creatorUserId": "string",
- "description": "Counterparty for high-value transactions, primarily deals in automotive imports.",
- "accountInformation": {
- "assetTypeId": "ETHEREUM_GOERLI_ETH",
- "bankAccountType": "CHECKING",
- "accountNumber": "123456789012",
- "routingNumber": "021000021",
- "swiftBic": "string",
- "institutionName": "Chase Bank",
- "institutionAddress": "Chase Bank"
}, - "intermediaryInformation": {
- "intermediaryType": "FIAT_PA",
- "institutionName": "Bank of America",
- "institutionAddress": {
- "countryCode": "AD",
- "state": "string",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "postalCode": "string"
}, - "swiftBic": "string",
- "routingNumber": "021000021"
}
}Response samples
- 201
{- "counterpartyType": "FIAT_US",
- "supportedRails": "ACH",
- "profileType": "INDIVIDUAL",
- "profile": {
- "relationshipToCustomer": "SPOUSE",
- "firstName": "John",
- "lastName": "Doe",
- "dateOfBirth": "1980-04-15",
- "email": "john.doe@example.com",
- "telephoneNumber": "+1234567890",
- "taxReferenceNumber": "123-45-6789",
- "address": {
- "countryCode": "AD",
- "state": "string",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "postalCode": "string"
}
}, - "status": "ACTIVE",
- "customerId": "string",
- "creatorUserId": "string",
- "description": "Counterparty for high-value transactions, primarily deals in automotive imports.",
- "isLinked": false,
- "isKYCDone": false,
- "accountInformation": {
- "assetTypeId": "ETHEREUM_GOERLI_ETH",
- "bankAccountType": "CHECKING",
- "accountNumber": "123456789012",
- "routingNumber": "021000021",
- "swiftBic": "string",
- "institutionName": "Chase Bank",
- "institutionAddress": "Chase Bank"
}, - "intermediaryInformation": {
- "intermediaryType": "FIAT_PA",
- "institutionName": "Bank of America",
- "institutionAddress": {
- "countryCode": "AD",
- "state": "string",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "postalCode": "string"
}, - "swiftBic": "string",
- "routingNumber": "021000021"
}, - "bankingPartnerError": "string",
- "metadata": { },
- "id": { }
}Find all Counterparties
Authorizations:
query Parameters
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
| cursor | string |
| skip | number |
| limit | number |
Responses
Response samples
- 200
{- "counterparties": [
- {
- "counterpartyType": "FIAT_US",
- "supportedRails": "ACH",
- "profileType": "INDIVIDUAL",
- "profile": {
- "relationshipToCustomer": "SPOUSE",
- "firstName": "John",
- "lastName": "Doe",
- "dateOfBirth": "1980-04-15",
- "email": "john.doe@example.com",
- "telephoneNumber": "+1234567890",
- "taxReferenceNumber": "123-45-6789",
- "address": {
- "countryCode": "AD",
- "state": "string",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "postalCode": "string"
}
}, - "status": "ACTIVE",
- "customerId": "string",
- "creatorUserId": "string",
- "description": "Counterparty for high-value transactions, primarily deals in automotive imports.",
- "isLinked": false,
- "isKYCDone": false,
- "accountInformation": {
- "assetTypeId": "ETHEREUM_GOERLI_ETH",
- "bankAccountType": "CHECKING",
- "accountNumber": "123456789012",
- "routingNumber": "021000021",
- "swiftBic": "string",
- "institutionName": "Chase Bank",
- "institutionAddress": "Chase Bank"
}, - "intermediaryInformation": {
- "intermediaryType": "FIAT_PA",
- "institutionName": "Bank of America",
- "institutionAddress": {
- "countryCode": "AD",
- "state": "string",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "postalCode": "string"
}, - "swiftBic": "string",
- "routingNumber": "021000021"
}, - "bankingPartnerError": "string",
- "metadata": { },
- "id": { }
}
], - "nextCursor": "string",
- "hasMore": true,
- "totalCount": 150
}Find a specific Counter Party
Authorizations:
path Parameters
| counterpartyId required | string |
Responses
Response samples
- 200
{- "counterpartyType": "FIAT_US",
- "supportedRails": "ACH",
- "profileType": "INDIVIDUAL",
- "profile": {
- "relationshipToCustomer": "SPOUSE",
- "firstName": "John",
- "lastName": "Doe",
- "dateOfBirth": "1980-04-15",
- "email": "john.doe@example.com",
- "telephoneNumber": "+1234567890",
- "taxReferenceNumber": "123-45-6789",
- "address": {
- "countryCode": "AD",
- "state": "string",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "postalCode": "string"
}
}, - "status": "ACTIVE",
- "customerId": "string",
- "creatorUserId": "string",
- "description": "Counterparty for high-value transactions, primarily deals in automotive imports.",
- "isLinked": false,
- "isKYCDone": false,
- "accountInformation": {
- "assetTypeId": "ETHEREUM_GOERLI_ETH",
- "bankAccountType": "CHECKING",
- "accountNumber": "123456789012",
- "routingNumber": "021000021",
- "swiftBic": "string",
- "institutionName": "Chase Bank",
- "institutionAddress": "Chase Bank"
}, - "intermediaryInformation": {
- "intermediaryType": "FIAT_PA",
- "institutionName": "Bank of America",
- "institutionAddress": {
- "countryCode": "AD",
- "state": "string",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "postalCode": "string"
}, - "swiftBic": "string",
- "routingNumber": "021000021"
}, - "bankingPartnerError": "string",
- "metadata": { },
- "id": { }
}Find Counter Party Linking Details by Counterparty id
Authorizations:
path Parameters
| counterpartyId required | string |
Request Body schema: application/jsonrequired
| isMobileWebview required | boolean Indicates whether the linking should be done through a mobile webview. |
| redirectUrl required | string The URL to which users will be redirected after a successful account linking process. This should be a valid URL conforming to standard URL formats. |
Responses
Request samples
- Payload
{- "isMobileWebview": true,
}Response samples
- 201
{- "linkingProvider": "string",
- "isMobileWebview": true,
- "uiMessageWebviewUrlScheme": "com.example.app://link",
}Find all Linkable Accounts
Authorizations:
path Parameters
| counterpartyId required | string |
Request Body schema: application/jsonrequired
| memberGuid required | string The unique identifier for the member whose accounts are to be linked. |
| bankAccountType required | string Enum: "CHECKING" "SAVING" |
Responses
Request samples
- Payload
{- "memberGuid": "string",
- "bankAccountType": "CHECKING"
}Response samples
- 201
{- "counterpartyId": "string",
- "linkingProvider": "string",
- "availableAccount": [
- {
- "accountLinkId": "string",
- "accountName": "Checking Account - 1234",
- "accountNumber": "string"
}
], - "memberGuid": "string"
}Link the countryparty with account
Authorizations:
path Parameters
| counterpartyId required | string |
Request Body schema: application/jsonrequired
| accountLinkId required | string Account ID |
Responses
Request samples
- Payload
{- "accountLinkId": "string"
}Response samples
- 201
{- "counterpartyType": "FIAT_US",
- "supportedRails": "ACH",
- "profileType": "INDIVIDUAL",
- "profile": {
- "relationshipToCustomer": "SPOUSE",
- "firstName": "John",
- "lastName": "Doe",
- "dateOfBirth": "1980-04-15",
- "email": "john.doe@example.com",
- "telephoneNumber": "+1234567890",
- "taxReferenceNumber": "123-45-6789",
- "address": {
- "countryCode": "AD",
- "state": "string",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "postalCode": "string"
}
}, - "status": "ACTIVE",
- "customerId": "string",
- "creatorUserId": "string",
- "description": "Counterparty for high-value transactions, primarily deals in automotive imports.",
- "isLinked": false,
- "isKYCDone": false,
- "accountInformation": {
- "assetTypeId": "ETHEREUM_GOERLI_ETH",
- "bankAccountType": "CHECKING",
- "accountNumber": "123456789012",
- "routingNumber": "021000021",
- "swiftBic": "string",
- "institutionName": "Chase Bank",
- "institutionAddress": "Chase Bank"
}, - "intermediaryInformation": {
- "intermediaryType": "FIAT_PA",
- "institutionName": "Bank of America",
- "institutionAddress": {
- "countryCode": "AD",
- "state": "string",
- "street1": "string",
- "street2": "string",
- "city": "string",
- "postalCode": "string"
}, - "swiftBic": "string",
- "routingNumber": "021000021"
}, - "bankingPartnerError": "string",
- "metadata": { },
- "id": { }
}Create a Withdrawal
Authorizations:
Request Body schema: application/jsonrequired
| withdrawalRail required | string (WithdrawalRail) Value: "ACH" |
| withdrawalPurpose required | string (WithdrawalPurpose) Enum: "PERSONAL_ACCOUNT" "FAMILY" "INSURANCE" "INVESTMENT" "REAL_ESTATE" "TUITION" "MEDICAL" "TRAVEL" "TRADE_TRANSACTIONS" "UTILITY" "TAX" "LOAN" "BILLS" "PAYROLL" "TELECOM" "INTELLECTUAL_PROPERTY" "OTHER_BUSINESS_SERVICES" "CHARITABLE_DONATIONS" "MORTGAGE" "EXPENSES_REIMBURSEMENT" "PROFESSIONAL_SERVICES" "MARKETING" "RENTAL_PROPERTY" "OTHER" |
| description | string |
| accountAssetId required | string Asset account identifier from which the withdrawal is made. |
| destinationCounterpartyId required | string |
| amount required | number >= 1 |
| memo | string |
Responses
Request samples
- Payload
{- "withdrawalRail": "ACH",
- "withdrawalPurpose": "PERSONAL_ACCOUNT",
- "description": "string",
- "accountAssetId": "asset-account-uuid-1234",
- "destinationCounterpartyId": "string",
- "amount": 1,
- "memo": "string"
}Response samples
- 201
{- "withdrawalRail": "ACH",
- "withdrawalStatus": "REQUESTED",
- "withdrawalPurpose": "PERSONAL_ACCOUNT",
- "id": "string",
- "transactionId": "string",
- "description": "string",
- "accountAssetId": "asset-account-uuid-1234",
- "amount": 1,
- "destinationCounterpartyId": "string",
- "memo": "string"
}Find all Withdrawals
Authorizations:
query Parameters
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
| cursor | string |
| skip | number |
| limit | number |
Responses
Response samples
- 200
{- "withdrawalDocuments": [
- {
- "withdrawalRail": "ACH",
- "withdrawalStatus": "REQUESTED",
- "withdrawalPurpose": "PERSONAL_ACCOUNT",
- "id": "string",
- "transactionId": "string",
- "description": "string",
- "accountAssetId": "asset-account-uuid-1234",
- "amount": 1,
- "destinationCounterpartyId": "string",
- "memo": "string"
}
], - "nextCursor": "string",
- "hasMore": true,
- "totalCount": 150
}Find a specific Withdrawal by Withdrawal id
Authorizations:
path Parameters
| withdrawalId required | string |
Responses
Response samples
- 200
{- "withdrawalRail": "ACH",
- "withdrawalStatus": "REQUESTED",
- "withdrawalPurpose": "PERSONAL_ACCOUNT",
- "id": "string",
- "transactionId": "string",
- "description": "string",
- "accountAssetId": "asset-account-uuid-1234",
- "amount": 1,
- "destinationCounterpartyId": "string",
- "memo": "string"
}Find all Transactions
Authorizations:
query Parameters
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
| cursor | string |
| skip | number |
| limit | number |
Responses
Response samples
- 200
{- "transactionDocuments": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "transactionType": "FIAT_TRANSFER_IN",
- "transactionStatus": "AUTHORIZED",
- "categoryType": "ADJUSTMENT",
- "rail": "ACH",
- "id": "string",
- "value": 2500.75,
- "accountAssetId": "string",
- "categoryId": "string",
- "description": "Monthly rent payment",
- "railMemo": "Final installment for invoice #1234",
- "railReference": "string",
- "counterparty": { },
- "transactionDate": "2023-01-15T14:30:00.000Z",
- "transactionPostDate": "2023-01-16T00:00:00.000Z",
- "originatorAccountNo": "XXXXXX1234",
- "originatorRoutingNo": "111000025",
- "originatorType": "Business",
- "originatorName": "John Doe Inc."
}
], - "nextCursor": "string",
- "hasMore": true,
- "totalCount": 150
}Create a KYC Document Check
Authorizations:
Request Body schema: application/jsonrequired
| documentType required | string (KycDocumentTypeOptions) Enum: "DRIVER_LICENSE" "PASSPORT" "STATE_ID" "PERMANENT_RESIDENT_CARD" "UTILITY_BILL" "BANK_STATEMENTS" "TAX_RETURN_DOCUMENT" "USA_IRS_FORM" "NON_USA_IRS_FORM" |
| category required | string (KycDocumentCategory) Enum: "ID_DOCUMENT" "TAX_INFO_DOCUMENT" "ADDRESS_PROOF" |
| uploadedDocumentId | string Unique identifier of the uploaded document, generated as a UUID. |
| customerId required | string |
Responses
Request samples
- Payload
{- "documentType": "DRIVER_LICENSE",
- "category": "ID_DOCUMENT",
- "uploadedDocumentId": "string",
- "customerId": "string"
}Response samples
- 201
{- "kycDocumentCheck": {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "DRIVER_LICENSE",
- "category": "ID_DOCUMENT",
- "customerId": "string",
- "uploadedDocumentId": "string",
- "id": { }
}, - "success": true
}Find all KYC Document Checks
Authorizations:
query Parameters
object (FilterDto) | |
object (FilterDto) | |
object (FilterDto) | |
| cursor | string |
| skip | number |
| limit | number |
Responses
Response samples
- 200
{- "kycDocumentChecks": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "DRIVER_LICENSE",
- "category": "ID_DOCUMENT",
- "customerId": "string",
- "uploadedDocumentId": "string",
- "id": { }
}
], - "nextCursor": "string",
- "hasMore": true,
- "totalCount": 150
}Find a specific KYC Document Check
Authorizations:
path Parameters
| kycDocumentId required | string |
Responses
Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "documentType": "DRIVER_LICENSE",
- "category": "ID_DOCUMENT",
- "customerId": "string",
- "uploadedDocumentId": "string",
- "id": { }
}Create a Partner Account
Authorizations:
Request Body schema: application/jsonrequired
| customerId required | string The ID of the customer associated with the partner account. | ||||||||||
required | object Information about the total anticipated transactions for the partner account. | ||||||||||
| |||||||||||
Responses
Request samples
- Payload
{- "customerId": "string",
- "totalAnticipatedTransactionInfo": {
- "usdValueOfFiat": "UPTO_10K",
- "inflowMonthlyTransactionCount": "UPTO_5",
- "inflowMonthlyTransactionAmount": "UPTO_1K",
- "outflowMonthlyTransactionCount": "UPTO_5",
- "outflowMonthlyTransactionAmount": "UPTO_1K"
}
}Response samples
- 201
{- "pendingActions": [
- "TOTAL_ANTICIPATED_TRANSACTION_INFO_REQUIRED"
], - "customerId": "string",
- "totalAnticipatedTransactionInfo": {
- "usdValueOfFiat": "UPTO_10K",
- "inflowMonthlyTransactionCount": "UPTO_5",
- "inflowMonthlyTransactionAmount": "UPTO_1K",
- "outflowMonthlyTransactionCount": "UPTO_5",
- "outflowMonthlyTransactionAmount": "UPTO_1K"
}, - "id": { }
}Fetch all Partner Accounts
Authorizations:
query Parameters
object (FilterDto) | |
| cursor | string |
| skip | number |
| limit | number |
Responses
Response samples
- 200
{- "partnerAccounts": [
- {
- "pendingActions": [
- "TOTAL_ANTICIPATED_TRANSACTION_INFO_REQUIRED"
], - "customerId": "string",
- "totalAnticipatedTransactionInfo": {
- "usdValueOfFiat": "UPTO_10K",
- "inflowMonthlyTransactionCount": "UPTO_5",
- "inflowMonthlyTransactionAmount": "UPTO_1K",
- "outflowMonthlyTransactionCount": "UPTO_5",
- "outflowMonthlyTransactionAmount": "UPTO_1K"
}, - "id": { }
}
], - "nextCursor": "string",
- "hasMore": true,
- "totalCount": 150
}Fetch a Partner Account By ID
Authorizations:
path Parameters
| partnerAccountId required | string |
Responses
Response samples
- 200
{- "pendingActions": [
- "TOTAL_ANTICIPATED_TRANSACTION_INFO_REQUIRED"
], - "customerId": "string",
- "totalAnticipatedTransactionInfo": {
- "usdValueOfFiat": "UPTO_10K",
- "inflowMonthlyTransactionCount": "UPTO_5",
- "inflowMonthlyTransactionAmount": "UPTO_1K",
- "outflowMonthlyTransactionCount": "UPTO_5",
- "outflowMonthlyTransactionAmount": "UPTO_1K"
}, - "id": { }
}Update a Partner Account
Authorizations:
path Parameters
| partnerAccountId required | string |
Request Body schema: application/jsonrequired
object Information about the total anticipated transactions for the partner account. | |||||||||||
| |||||||||||
Responses
Request samples
- Payload
{- "totalAnticipatedTransactionInfo": {
- "usdValueOfFiat": "UPTO_10K",
- "inflowMonthlyTransactionCount": "UPTO_5",
- "inflowMonthlyTransactionAmount": "UPTO_1K",
- "outflowMonthlyTransactionCount": "UPTO_5",
- "outflowMonthlyTransactionAmount": "UPTO_1K"
}
}Response samples
- 200
{- "pendingActions": [
- "TOTAL_ANTICIPATED_TRANSACTION_INFO_REQUIRED"
], - "customerId": "string",
- "totalAnticipatedTransactionInfo": {
- "usdValueOfFiat": "UPTO_10K",
- "inflowMonthlyTransactionCount": "UPTO_5",
- "inflowMonthlyTransactionAmount": "UPTO_1K",
- "outflowMonthlyTransactionCount": "UPTO_5",
- "outflowMonthlyTransactionAmount": "UPTO_1K"
}, - "id": { }
}Fetch a Partner Account Assets
Authorizations:
path Parameters
| partnerAccountId required | string |
Responses
Response samples
- 200
{- "accountAssets": [
- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "status": "UNDER_REVIEW",
- "productType": "CLIENT",
- "assetTypeId": "string",
- "productId": "string",
- "customerId": "string",
- "currentBalance": "100000",
- "availableBalance": "95000",
- "parentAccountId": "string",
- "id": { }
}
], - "nextCursor": "string",
- "hasMore": true,
- "totalCount": 150
}Fetch a Partner Account Asset By ID
Authorizations:
path Parameters
| partnerAccountId required | string |
| assetId required | string |
Responses
Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "status": "UNDER_REVIEW",
- "productType": "CLIENT",
- "assetTypeId": "string",
- "productId": "string",
- "customerId": "string",
- "currentBalance": "100000",
- "availableBalance": "95000",
- "parentAccountId": "string",
- "id": { }
}Submit account application
Authorizations:
path Parameters
| partnerAccountId required | string |
Responses
Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "status": "INCOMPLETE",
- "accountType": "OPPORTUNITY",
- "customerId": "string",
- "bankingApplicationId": "string",
- "accountApplicationErrors": { },
- "defaultAccountAssetId": "string",
- "accountId": "string",
- "pendingActions": {
- "customerProfile": [
- "PERSONAL_INFORMATION_REQUIRED"
], - "partnerAccount": [
- "TOTAL_ANTICIPATED_TRANSACTION_INFO_REQUIRED"
], - "companyDueDiligence": [
- "BUSINESS_GENERAL_INFO_REQUIRED"
], - "companyAssociatedParties": { },
- "individualDueDiligence": [
- "OCCUPATION_INFORMATION_REQUIRED"
], - "opportunityAccount": [
- "ANTICIPATED_INVESTMENT_ACTIVITIES_INFO_REQUIRED"
], - "standardAccount": [
- "PURPOSE_OF_ACCOUNT"
]
}, - "id": { }
}Account application status
Authorizations:
path Parameters
| partnerAccountId required | string |
Responses
Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "status": "INCOMPLETE",
- "accountType": "OPPORTUNITY",
- "customerId": "string",
- "bankingApplicationId": "string",
- "accountApplicationErrors": { },
- "defaultAccountAssetId": "string",
- "accountId": "string",
- "pendingActions": {
- "customerProfile": [
- "PERSONAL_INFORMATION_REQUIRED"
], - "partnerAccount": [
- "TOTAL_ANTICIPATED_TRANSACTION_INFO_REQUIRED"
], - "companyDueDiligence": [
- "BUSINESS_GENERAL_INFO_REQUIRED"
], - "companyAssociatedParties": { },
- "individualDueDiligence": [
- "OCCUPATION_INFORMATION_REQUIRED"
], - "opportunityAccount": [
- "ANTICIPATED_INVESTMENT_ACTIVITIES_INFO_REQUIRED"
], - "standardAccount": [
- "PURPOSE_OF_ACCOUNT"
]
}, - "id": { }
}Create a Subscription
Authorizations:
Request Body schema: application/jsonrequired
| events required | Array of arrays (SubscriptionType) Items Enum: "BANKING_APPLICATION" "BANKING_CUSTOMER" "BANKING_TRANSACTION" "BANKING_COUNTERPARTY" "BANKING_ACCOUNT_ASSET" "*" The events for the subscription, can be an array of SubscriptionType or "*" for all events |
| callbackUrl required | string The callback URL for the subscription. |
Responses
Request samples
- Payload
{- "events": [
- "BANKING_APPLICATION"
], - "callbackUrl": "string"
}Response samples
- 201
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "events": [
- "BANKING_ACCOUNT_ASSET",
- "BANKING_APPLICATION"
], - "status": "ENABLED",
- "callbackUrl": "string",
- "signatureVerficationKey": "string",
- "id": { }
}Response samples
- 200
[- {
- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "events": [
- "BANKING_ACCOUNT_ASSET",
- "BANKING_APPLICATION"
], - "status": "ENABLED",
- "callbackUrl": "string",
- "signatureVerficationKey": "string",
- "id": { }
}
]Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "events": [
- "BANKING_ACCOUNT_ASSET",
- "BANKING_APPLICATION"
], - "status": "ENABLED",
- "callbackUrl": "string",
- "signatureVerficationKey": "string",
- "id": { }
}Regenerate Subscription Secret
Authorizations:
path Parameters
| subscriptionId required | string |
Responses
Response samples
- 200
{- "createdAt": "2019-08-24T14:15:22Z",
- "updatedAt": "2019-08-24T14:15:22Z",
- "events": [
- "BANKING_ACCOUNT_ASSET",
- "BANKING_APPLICATION"
], - "status": "ENABLED",
- "callbackUrl": "string",
- "signatureVerficationKey": "string",
- "id": { }
}Login into your Account
Request Body schema: application/jsonrequired
| username required | string The username for authentication. |
| password required | string The password for authentication. |
Responses
Request samples
- Payload
{- "username": "string",
- "password": "string"
}Response samples
- 201
{- "accessToken": "string"
}Change Account password
Authorizations:
Request Body schema: application/jsonrequired
| newPassword required | string The new password to set. It must meet the following password policy: - At least one lowercase letter (a-z). - At least one uppercase letter (A-Z). - At least one digit (0-9). - At least one special character from the set @$!%*?. - Minimum length: 12, Maximum length: 64. |
| oldPassword required | string The old password for verification. |
Responses
Request samples
- Payload
{- "newPassword": "string",
- "oldPassword": "string"
}Response samples
- 201
{- "success": true,
- "message": "string"
}