Create Context
Creates a new context within a project. Contexts can be used to organize logs and artifacts within a project.
If is_versioned=True, all logs in this context will be versioned and mutable. The context version will increment automatically when logs are added, updated, or removed.
The context can be provided as a string (which will be used as the name with no description) or as an object with name and description fields.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Name of the project to create context in.
Body
Context name, can be nested using ’/’ (e.g., ‘parent/child’). Must contain only alphanumeric characters, underscores, and hyphens.
Optional description of the context
Whether the context should be versioned. If True, the context will be versioned and mutable.
Whether duplicate log entries are allowed in this context. If False, attempts to add duplicate logs will be ignored.