Skip to content
Start here

Extensions

List extensions
registrar_sandbox.extensions.list(ExtensionListParams**kwargs) -> SyncCursorPagination[ExtensionListResponse]
GET/accounts/{account_id}/registrar-sandbox/extensions
Get extension
registrar_sandbox.extensions.get(strextension, ExtensionGetParams**kwargs) -> ExtensionGetResponse
GET/accounts/{account_id}/registrar-sandbox/extensions/{extension}
ModelsExpand Collapse
class ExtensionListResponse:

Extension entry with metadata and JSON Schema documents for the registration operation.

metadata: Metadata

Extension metadata

name: str

The full name of the extension. For example, “co.uk”, or “uk”

tld: str

The tld of the extension. For example, for “co.uk”, it’s “uk”. For “uk”, it’s “uk”

registration_schema: object

JSON Schema describing the expected input structure for registration operations on this extension.

class ExtensionGetResponse:

Extension entry with metadata and JSON Schema documents for the registration operation.

metadata: Metadata

Extension metadata

name: str

The full name of the extension. For example, “co.uk”, or “uk”

tld: str

The tld of the extension. For example, for “co.uk”, it’s “uk”. For “uk”, it’s “uk”

registration_schema: object

JSON Schema describing the expected input structure for registration operations on this extension.