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 all Manufactory projects for an organization by providing the org_id and authentication token in the header which returns project details like IDs names descriptions and timezones.

Events > Get events schema

The GET endpoint retrieves event schema details including attribute definitions with data types and display names by specifying organization and project IDs through an authenticated request.

Actors > Get actors schema

The GET /actors/schema endpoint retrieves actor attributes like city country email and username for a specified organization and project using Manufactory access token authentication.

Projects > Create a project

A POST request to create projects requires authentication through X-Manufactory-Auth header along with org_id name description and timezone parameters to generate a new project with unique identifiers and settings.