Skip to main content

Update project

Updates a project by ID

Path Parameters
    id string required
Request Body required
    name string required

    The name of the project. The name must be unique within the entire Frontier instance. The name can contain only alphanumeric characters, dashes and underscores.
    Example: frontier-playground

    title string

    The title can contain any UTF-8 character, used to provide a human-readable name for the project. Can also be left empty.
    Example: Frontier Playground

    metadata object

    Metadata object for projects that can hold key value pairs defined in Project Metaschema.

    org_id string required

    unique id of the organization to which project belongs

Responses

A successful response.


Schema
    project object
    id string
    name string
    title string
    org_id string
    metadata object
    created_at date-time

    The time the project was created.

    updated_at date-time

    The time the project was last updated.

    members_count int32

    The number of members explicitly added in the project.

Loading...