Appearance
Prismic
undefined
| Detail | Value |
|---|---|
| Category | CMS |
| Base URL | https://{repository}.cdn.prismic.io/api/v2 |
| Authentication | Bearer Token |
| Endpoints | 5 |
| Connector key | prismic |
Using Prismic in a workflow
- Go to Connections and click New Connection.
- Pick Prismic from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — the full list is below.
Available endpoints
| Endpoint | Summary |
|---|---|
GET | Search Documents |
GET | List Custom Types |
GET | Create Custom Type |
GET | List Shared Slices |
GET | Create Document |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
GET
Search Documents
| Detail | Value |
|---|---|
| Operation ID | search_documents_0 |
| Method | GET |
| Path | `` |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Prismic connection from the Connection dropdown.
- In the Operation dropdown, select
search_documents_0. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Prismic API reference.
GET
List Custom Types
| Detail | Value |
|---|---|
| Operation ID | list_custom_types_1 |
| Method | GET |
| Path | `` |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Prismic connection from the Connection dropdown.
- In the Operation dropdown, select
list_custom_types_1. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Prismic API reference.
GET
Create Custom Type
| Detail | Value |
|---|---|
| Operation ID | create_custom_type_2 |
| Method | GET |
| Path | `` |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Prismic connection from the Connection dropdown.
- In the Operation dropdown, select
create_custom_type_2. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Prismic API reference.
GET
List Shared Slices
| Detail | Value |
|---|---|
| Operation ID | list_shared_slices_3 |
| Method | GET |
| Path | `` |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Prismic connection from the Connection dropdown.
- In the Operation dropdown, select
list_shared_slices_3. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Prismic API reference.
GET
Create Document
| Detail | Value |
|---|---|
| Operation ID | create_document_4 |
| Method | GET |
| Path | `` |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Prismic connection from the Connection dropdown.
- In the Operation dropdown, select
create_document_4. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Prismic API reference.