Skip to content

Get events schema

You can fetch an events schema belonging to a specific project in Tallyfy Manufactory using the endpoint GET /events/schema/{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

{
"attributes": [
{
"name": "event_name",
"display_name": "Event Name",
"data_type": "text"
},
{
"name": "event_type",
"display_name": "Event Type",
"data_type": "text"
},
{
"name": "made_purchase",
"display_name": "Made Purchase",
"data_type": "boolean"
}
],
"org_id": "xyz",
"project_id": 12345
}

Events > Create events schema

Tallyfy Manufactory allows you to create events schemas by sending a POST request to /events/schema with organization ID project ID and attribute definitions using proper authentication headers.

Events > Delete events schema

Tallyfy Manufactory allows deletion of event schemas through a DELETE API endpoint that requires organization ID project ID and authentication token in the request header.

Actors > Get actors schema

The GET endpoint retrieves actor schema details including attribute definitions data types and unique identifiers for a specific project by providing organization ID project ID and authentication token.

Manufactory > Events

Tallyfy Manufactory allows you to design and build single event schemas for projects with careful planning of event properties being essential for successful implementation while requiring separate projects for multiple schemas.