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 endpoint allows retrieving specific Manufactory project details by providing organization ID and project ID with proper authentication through an access token header.

Projects > Get all projects

The GET endpoint retrieves multiple projects within an organization by providing an org_id and authentication token to return details like project IDs names descriptions timezones and creation dates.

Projects > Update a project

Project details like name description and timezone can be updated through an authenticated PUT request that returns the modified project information and unique key.

Projects > Create a project

Creating a project requires authentication through a POST request with organization ID name description and timezone while returning project details including a unique project key.