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": "***********************"
}
Related articles
Projects > Get a project
The API endpoint retrieves a specific Manufactory project using the provided org ID and project ID, requiring authentication.
Projects > Get all projects
All Manufactory projects can be retrieved using the GET /projects/{org_id} endpoint with authentication and the required org_id parameter.
Projects > Update a project
The project can be updated with the specified name, description, and timezone using the provided API endpoint.
Projects > Create a project
A new project can be created by providing the required details such as org ID, name, description, and timezone.