{ "opencollection": "1.0.0", "info": { "name": "Braintrust REST ACL Projects API", "version": "1.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Projects", "type": "folder" }, "items": [ { "info": { "name": "List projects", "type": "http" }, "http": { "method": "GET", "url": "https://api.braintrust.dev/v1/project", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Limit the number of objects to return." }, { "name": "starting_after", "value": "", "type": "query", "description": "Pagination cursor id. Together with limit, returns the next page after the object with this id." }, { "name": "ending_before", "value": "", "type": "query", "description": "Pagination cursor id. Together with limit, returns the previous page before the object with this id." }, { "name": "org_name", "value": "", "type": "query", "description": "Filter projects to a single organization by name." }, { "name": "project_name", "value": "", "type": "query", "description": "Filter to a project with the given name." } ] }, "docs": "List out all projects, optionally filtered and paginated." }, { "info": { "name": "Create project", "type": "http" }, "http": { "method": "POST", "url": "https://api.braintrust.dev/v1/project", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new project. If there is an existing project with the same name in the organization, will return the existing project unmodified." }, { "info": { "name": "Get project", "type": "http" }, "http": { "method": "GET", "url": "https://api.braintrust.dev/v1/project/:project_id", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "Project id, the unique identifier of the project." } ] }, "docs": "Get a project by its unique identifier." }, { "info": { "name": "Partially update project", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.braintrust.dev/v1/project/:project_id", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "Project id, the unique identifier of the project." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Partially update a project object. Specify the fields to update in the payload. Unspecified fields are left unchanged." }, { "info": { "name": "Delete project", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.braintrust.dev/v1/project/:project_id", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "Project id, the unique identifier of the project." } ] }, "docs": "Delete a project by its unique identifier." } ] } ], "bundled": true }