Purpose:
Runs a standard extraction test using inline content.
POST /noCo/api/v2/workspaces/{workspaceId}/extraction/test
| Parameter | Type | Required | Description |
|---|---|---|---|
| workspaceId | UUID | ✅ Yes | Identifier of the workspace |
Requires authentication using:
Authorization: Bearer <token>
| Header | Required |
|---|---|
| Authorization | ✅ Yes |
| Content-Type: application/json | ✅ Yes |
{
"content": "Transcript text here",
"columnConfiguration": [
{ "name": "Speaker Name", "description": "Extract speaker name" }
]
}
| Field | Type | Required | Description |
|---|---|---|---|
| content | string | ✅ Yes | Inline content to test extraction |
| columnConfiguration | array | ✅ Yes | Column definitions |
curl -X POST https://be.datagol.ai/noCo/api/v2/workspaces/{workspaceId}/extraction/test \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{
"content": "Sample document text",
"columnConfiguration": [
{
"name": "invoiceNumber",
"type": "SINGLE_LINE_TEXT"
}
]
}'
Runs a standard extraction test on inline content or optional file references.
This API uses OAuth 2.0 with the authorization code grant flow.
Test API for Standard extraction