/company/create endpoint. This is the first step in enabling company-related operations within SynchPay. The process involves submitting a registration object, waiting for verification, and then completing additional setup steps. Here’s how it works:
1
Obtain an Access Token
Before calling
/company/create, obtain an access token by making a POST
request to /auth/token with your ClientId and ClientSecret.
Refer to the Authorization section for details.2
Create a Registration Object
Use the access token to submit the company details via the
/company/create
endpoint.3
Wait for KYB Process
After submission, SynchPay performs a Know-Your-Business (KYB) verification,
which takes approximately 24 hours.
4
Check Company Status
Use
GET /company/{companyReferenceId}/status to monitor the registration status.5
Complete Setup
Once approved, SynchPay sends an email with links to connect a bank account
via Plaid and access the Backend Portal for managing your account.
Registering a Company
The/company/create endpoint allows you to define a company entity by submitting a JSON object containing the company’s details. Below are the specifics of the API call.
Endpoint
- URL: https://api.synchpay.com/company/create
- Method:
POST - Authorization:
Bearer <AccessToken>Note: The access token is obtained from/auth/tokenusing yourClientIdandClientSecret.
Request Body
The request body is a JSON object with the following top-level fields:Owner Object
TheOwner object is a required field that contains the following properties:
Employees Array
TheEmployees field is an optional array of employee objects. Unlike the Owner object, employee objects do not include document-related fields. Each employee object in the array contains the following properties:
Note: The
Employees array is optional. If included, each employee object must contain all the specified fields (Name, EmailAddress, ContactNumber, and Title). If there are no employees to register at the time of company creation, you can either omit the Employees field or set it to an empty array ([]).
Locations Array
Use the optionalLocations array to create one or more company locations during registration. Each location contains:
You can add more locations after registration through company locations.
Validation rules
The API validates all fields before creating the company. If validation fails, you receive a400 Bad Request response with details about which fields are invalid. Key rules to be aware of:
- Email uniqueness — The owner’s email address cannot match any employee’s email address. All employee email addresses must be unique.
- Phone numbers —
ContactNumberfields must be valid phone numbers. - Address fields —
Statemust be a two-letter uppercase abbreviation.ZipCodemust be a five-digit code (with optional hyphen, e.g.90001or90-001). - Owner SSN — Must be exactly four digits.
- Company type — Must exactly match one of the accepted values (case-insensitive).
Example Request
Response
Upon successful submission, the endpoint returns the company UUID and the UUIDs of any locations created with it:Waiting for KYB Process
After submitting the registration object, SynchPay initiates the Know-Your-Business (KYB) process to verify the provided information. This process typically takes up to 24 hours. During this period, the company status remains “Unverified”.Checking Company Status
To monitor the registration status, use theGET /company/{companyReferenceId}/status endpoint:
- URL: https://api.synchpay.com/company/{companyReferenceId}/status
- Method:
GET - Authorization:
Bearer <AccessToken>
Note: For sandbox environment this will always return “Verified”
Completing Setup
Once the KYB process is complete and the company is verified, SynchPay sends an email to theEmailAddress provided in the registration. The email includes:
- Bank Account Connection: A link to connect your bank account via Plaid.
- Backend Portal Access: A link to the Backend Portal, where you can manage your account, add new account numbers, close accounts, and handle edge cases.