diff --git a/_build/api.yaml b/_build/api.yaml index d0872c6..94a11ef 100644 --- a/_build/api.yaml +++ b/_build/api.yaml @@ -16989,6 +16989,10 @@ components: example: strict nullable: true type: string + onboarding_url: + description: The URL to resume onboarding + example: https://onboarding.conekta.com/resume/6827305a1ec60400015eb116 + type: string required: - account_status - active @@ -17090,6 +17094,12 @@ components: $ref: "#/components/schemas/Create_Company_Request_fiscal_info" bank_account_info: $ref: "#/components/schemas/Create_Company_Request_bank_account_info" + users: + description: User emails for the company + items: + type: string + type: array + default: null title: Create Company Request CompanyDocumentRequest: description: Request body for uploading a company document. diff --git a/schemas/companies/company_response.yml b/schemas/companies/company_response.yml index 45452be..6fe66df 100644 --- a/schemas/companies/company_response.yml +++ b/schemas/companies/company_response.yml @@ -89,6 +89,10 @@ properties: enum: - smart - strict + onboarding_url: + type: string + description: The URL to resume onboarding + example: "https://onboarding.conekta.com/resume/6827305a1ec60400015eb116" required: - id - name diff --git a/schemas/companies/create_company_request.yml b/schemas/companies/create_company_request.yml index f55130a..17a19e9 100644 --- a/schemas/companies/create_company_request.yml +++ b/schemas/companies/create_company_request.yml @@ -50,4 +50,9 @@ properties: clabe: type: string description: The 18-digit CLABE for the bank account. - example: "002010077777777771" \ No newline at end of file + example: "002010077777777771" + users: + type: array + description: User emails for the company + items: + type: string \ No newline at end of file