Set theme to dark (⇧+D)
Manufactory

You can update a project using the endpoint PUT /projects/{org_id}/{project_id}.

​​ Authentication

The following header is required for all API calls:

  • X-Manufactory-Auth - Manufactory access token

​​ Required values

  • org_id (required) string - Manufactory org ID.
  • project_id (required) number - Manufactory project ID.

​​ Required keys

  • name (optional) string - The desired project name.
  • description (optional) string - A description for the project.
  • timezone (optional) string - The preferred timezone for displaying dates. For example, New York (Eastern) would be America/New_York. A complete list of valid timezones (All timestamps are stored in UTC timezone, this selection is intended for displaying only)

​​ Request example

{
    "name": "Dev"
}

​​ Response example

{
    "org_id": "xyz",
    "project_id": 10003,
    "name": "Dev",
    "description": "A project for prod data",
    "timezone": "America/Chicago",
    "created_at": "2023-02-08 17:13:26",
    "project_key": "***********************"
}