Skip to main content

Index all event tables

POST 

https://app.mitzu.io/api/v1/projects/:project_id/index-all-event-tables

Index all event tables

Request

Path Parameters

    project_id stringrequired

    The ID of the project

Responses

OK

Schema
    tasks object[]
  • Array [
  • idstring

    Unique ID of the task

    statestring

    Possible values: [queued, running, finished, cancelled]

  • ]

Authorization: x-mitzu-api-key

name: x-mitzu-api-keytype: apiKeydescription: ## API Key

You can generate a new API key on the Account Settings -> API keys page.
in: header
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://app.mitzu.io/api/v1/projects/:project_id/index-all-event-tables");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("x-mitzu-api-key", "<x-mitzu-api-key>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://app.mitzu.io/api/v1
Auth
Parameters
— pathrequired
ResponseClear

Click the Send API Request button above and see the response here!