phonic
Version:
[](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2FPhonic-Co%2Fphonic-node) [ • 587 B
text/typescript
/**
* @example
* {
* logo_url: "https://example.com/logo.png",
* invite_link_allowed_domains: ["example.com"],
* ip_allowlist: ["203.0.113.0/24"]
* }
*/
export interface UpdateWorkspaceRequest {
/** URL of the workspace logo. Must be an https URL ending in .png or .svg, or null to clear it. */
logo_url?: string | null;
/** Email domains allowed to join the workspace via invite link. */
invite_link_allowed_domains?: string[];
/** IP addresses or CIDR ranges allowed to access the workspace. */
ip_allowlist?: string[];
}