Creating Stages

Creating Stages#

GET https://api.materialized.dev/create-stage#

Create a new internal stage.

Request Headers:
Accept:

application/json

Returns:

A JSON object containing the stage ID.

Example

import requests
import json

url = "https://api.materialized.dev/create-stage"
headers = {
    "Authorization": "Key <YOUR_API_KEY>",
    "Content-Type": "application/json"
}

response = requests.get(url, headers=headers)
stage_id = response.json()["stage_id"]