Skip to content

Reset project key

You can reset a project’s key using the endpoint POST /projects/{org_id}/{project_id}/keys.

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.

Response example

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

Projects > Get a project

The GET endpoint retrieves project details including organization ID, project ID, name, description, timezone, creation timestamp, and project key when authenticated with a Manufactory access token.

Projects > Get all projects

The GET /projects/[org_id] endpoint retrieves a list of Manufactory projects with their details including project ID, name, description, timezone, and creation timestamp when authenticated with a valid access token.

Projects > Update a project

Projects can be updated via a PUT request by providing authentication, organization ID, project ID, and optional fields like name, description, and timezone preferences.

Projects > Create a project

Projects can be created by providing organization ID, name, description, and timezone through an authenticated POST request to return project details including a unique project key.