https://nextract.littleharborlabs.com/api/v1/orgs/{orgSlug}/integrationsList inbound integrations
Returns all published integrations with an inbound file API or webhook source. Use this to discover path segments and endpoint URLs for integrators.
Security
ApiKeyAuth (organization)
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| orgSlug | path | string | Yes | Organization slug (e.g. acme-inc). |
Responses
Catalog of inbound integrations.
{
"ok": true,
"organization": { "slug": "acme-inc" },
"integrations": [
{
"id": "wf_abc123",
"name": "Orders inbound",
"description": "Daily order file intake",
"pathSegment": "orders-in",
"sourceType": "api_file_ingest",
"endpointUrl": "https://nextract.littleharborlabs.com/api/v1/orgs/acme-inc/integrations/orders-in/files",
"watchPath": "./organization/acme-inc/inbound/orders-in",
"glob": "**/*",
"allowedClientCount": 2
},
{
"id": "wf_def456",
"name": "Partner webhook",
"pathSegment": "partner-events",
"sourceType": "webhook",
"endpointUrl": "https://nextract.littleharborlabs.com/api/hooks/acme-inc/partner-events",
"responseFormat": "json",
"allowedClientCount": 1
}
]
}Missing or invalid API key.
{
"ok": false,
"error": "Invalid or unauthorized API key"
}Organization not found.
{
"ok": false,
"error": "Invalid or unauthorized API key"
}Rate limit exceeded.
Unexpected server error.
{
"ok": false,
"error": "Invalid or unauthorized API key"
}Examples
curl -s \ -H "Authorization: Bearer $NEXTRACT_API_KEY" \ "https://nextract.littleharborlabs.com/api/v1/orgs/acme-inc/integrations"