Conekta::CustomerPortalResponse

July 21, 2026 ยท View on GitHub

Properties

NameTypeDescriptionNotes
slugStringUnique slug identifier for the portal[optional]
subscription_idStringAssociated subscription ID[optional]
customer_idStringAssociated customer ID[optional]
livemodeBooleanWhether this is a live or test mode portal[optional]
subscriptionSubscriptionDetails[optional]
customerCustomerDetails[optional]
idStringCustomer portal ID[optional]
company_idStringAssociated company ID[optional]
objectString[optional]
created_atIntegerUnix timestamp of creation[optional]
updated_atIntegerUnix timestamp of last update[optional]
portal_urlStringURL to access the customer portal[optional]

Example

require 'conekta'

instance = Conekta::CustomerPortalResponse.new(
  slug: agIvD4QSBl4Nunq4TmuozMw2ThtyVC,
  subscription_id: sub_2yYsQuYtXAbP1fdYu,
  customer_id: cus_2yDzKtEAD3khH8Sga,
  livemode: false,
  subscription: null,
  customer: null,
  id: scp_2ym7QbU9dTh7Froti,
  company_id: 63dad459920de10001d177b3,
  object: customer_portal,
  created_at: 1759108828,
  updated_at: 1759108828,
  portal_url: https://pay.stg.conekta.io/subscription/management/agIvD4QSBl4Nunq4TmuozMw2ThtyVC
)