Endpoints for managing verification folders
Get a specific folder by ID.
This endpoint returns details about a specific folder, including its custom fields.
folder_id: The ID of the folder to retrieve
GET /creator/folders/{folder_id} HTTP/1.1
Host:
X-API-Key: YOUR_API_KEY
Accept: */*
No content
Delete a folder.
This endpoint allows creators to delete a folder that they created. All verifications associated with this folder will also be deleted.
folder_id: The ID of the folder to delete
DELETE /creator/folders/{folder_id} HTTP/1.1
Host:
X-API-Key: YOUR_API_KEY
Accept: */*
No content
Get all verifications for a specific folder.
This endpoint returns all verifications associated with a specific folder.
folder_id: The ID of the folder to retrieve verifications for
GET /creator/folders/{folder_id}/verifications HTTP/1.1
Host:
X-API-Key: YOUR_API_KEY
Accept: */*
No content
Get all folders for the authenticated creator.
This endpoint returns all folders created by the authenticated creator.
GET /creator/folders HTTP/1.1
Host:
X-API-Key: YOUR_API_KEY
Accept: */*
No content
Create a new folder for organizing verifications.
This endpoint allows creators to create folders for organizing their verifications. Folders can have custom fields that will be collected for all verifications in the folder.
name: The name of the folder
description: A description of the folder
custom_fields: Array of custom fields to collect for all verifications in this folder
[]
POST /creator/folders HTTP/1.1
Host:
X-API-Key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 57
{
"name": "text",
"description": "text",
"custom_fields": [
{}
]
}
No content