You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The name of the organization. The name must be unique within the entire Frontier instance. The name can contain only alphanumeric characters, dashes and underscores.<br/>Example:`"frontier-org1-acme"`
title
str
The title can contain any UTF-8 character, used to provide a human-readable name for the organization. Can also be left empty.<br/> Example: `"Acme Inc"`
[optional]
metadata
object
Metadata object for organizations that can hold key value pairs defined in Organization Metaschema. The metadata object can be used to store arbitrary information about the organization such as labels, descriptions etc. The default Organization Metaschema contains labels and descripton fields. Update the Organization Metaschema to add more fields. <br/>Example:`{"labels": {"key": "value"}, "description": "Organization description"}`
[optional]
avatar
str
The avatar is base64 encoded image data of the user. Can also be left empty. The image should be less than 200KB. Should follow the regex pattern `^data:image/(png
jpg
Example
fromfrontier_api.models.v1beta1_organization_request_bodyimportV1beta1OrganizationRequestBody# TODO update the JSON string belowjson="{}"# create an instance of V1beta1OrganizationRequestBody from a JSON stringv1beta1_organization_request_body_instance=V1beta1OrganizationRequestBody.from_json(json)
# print the JSON string representation of the objectprintV1beta1OrganizationRequestBody.to_json()
# convert the object into a dictv1beta1_organization_request_body_dict=v1beta1_organization_request_body_instance.to_dict()
# create an instance of V1beta1OrganizationRequestBody from a dictv1beta1_organization_request_body_form_dict=v1beta1_organization_request_body.from_dict(v1beta1_organization_request_body_dict)