Skip to content

Get a project

You can get all Manufactory projects using the endpoint GET /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.

Response example

{
"org_id": "xyz",
"project_id": 100,
"name": "Staging",
"description": "A project for staging data",
"timezone": "America/Chicago",
"created_at": "2023-02-26T18:53:18Z",
"project_key": "***********************"
}

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 > Reset project key

The POST endpoint allows resetting a project’s key by providing organization ID and project ID while authenticated with a Manufactory access token.

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.