Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 697 Bytes

AddDomainRequest.md

File metadata and controls

22 lines (16 loc) · 697 Bytes

ClerkHttpClient::AddDomainRequest

Properties

Name Type Description Notes
name String The new domain name. Can contain the port for development instances.
is_satellite Boolean Marks the new domain as satellite. Only `true` is accepted at the moment.
proxy_url String The full URL of the proxy which will forward requests to the Clerk Frontend API for this domain. Applicable only to production instances. [optional]

Example

require 'clerk-http-client'

instance = ClerkHttpClient::AddDomainRequest.new(
  name: null,
  is_satellite: null,
  proxy_url: null
)