Conekta::CompanyResponse

September 19, 2025 ยท View on GitHub

Properties

NameTypeDescriptionNotes
idStringThe unique identifier for the company.
nameStringThe name of the company.
activeBooleanIndicates if the company is active.
account_statusStringThe current status of the company's account.
parent_company_idStringThe identifier of the parent company, if any.[optional]
onboarding_statusStringThe current status of the company's onboarding process.
documentsArray<CompanyResponseDocumentsInner>A list of documents related to the company.
created_atIntegerTimestamp of when the company was created.
objectStringThe type of object, typically &quot;company&quot;.
three_ds_enabledBooleanIndicates if 3DS authentication is enabled for the company.[optional]
three_ds_modeStringThe 3DS mode for the company, either 'smart' or 'strict'. This property is only applicable when three_ds_enabled is true. When three_ds_enabled is false, this field will be null.[optional]

Example

require 'conekta'

instance = Conekta::CompanyResponse.new(
  id: 6827305a1ec60400015eb116,
  name: test,
  active: false,
  account_status: signed_up,
  parent_company_id: 680bf1da38716d00013543bc,
  onboarding_status: pending,
  documents: null,
  created_at: 1748968241,
  object: company,
  three_ds_enabled: true,
  three_ds_mode: strict
)