API.teams property
Team API operations.
Signature:
readonly teams: Readonly<{
designs: {
list: (identity: string, options?: FetchInit<{}, "json">) => Promise<FetchResult<APIv1.DesignResource[]>>;
};
exports: {
list: (identity: string, options?: FetchInit<{}, "json">) => Promise<FetchResult<APIv1.ExportResource[]>>;
};
generations: {
list: (identity: string, options?: FetchInit<{}, "json">) => Promise<FetchResult<APIv1.GenerationResource[]>>;
};
materials: {
list: (identity: string, options?: FetchInit<{}, "json">) => Promise<FetchResult<APIv1.MaterialResource[]>>;
};
members: {
list: (identity: string, options?: FetchInit<{}, "json">) => Promise<FetchResult<APIv1.TeamMemberResource[]>>;
};
metafieldDefinitions: {
list: (identity: string, options?: FetchInit<{}, "json">) => Promise<FetchResult<APIv1.MetafieldDefinitionResource[]>>;
};
models: {
list: (identity: string, options?: FetchInit<{}, "json">) => Promise<FetchResult<APIv1.ModelResource[]>>;
};
read: (identity: string, options?: FetchInit<{}, "json">) => Promise<FetchResult<APIv1.UserResource>>;
uploads: {
list: (identity: string, options?: FetchInit<{}, "json">) => Promise<FetchResult<APIv1.UploadResource[]>>;
};
webhooks: {
list: (identity: string, options?: FetchInit<{}, "json">) => Promise<FetchResult<APIv1.WebhookResource[]>>;
};
}>;