Campaigns
get
Authorizations
AuthorizationstringRequired
Responses
200
Success
application/json
idstring · uuidOptional
clientIdstring · uuid · nullableOptional
namestring · nullableOptional
descriptionstring · nullableOptional
startDatestring · date-time · nullableOptional
durationinteger · int32 · nullableOptional
zapLimitinteger · int32 · nullableOptional
csvPathstring · nullableOptional
enabledboolean · nullableOptional
statusstring · nullableOptional
paperStockIdstring · uuid · nullableOptional
zapsSentinteger · int32 · nullableOptional
archivedDatestring · date-time · nullableOptional
templateIdstring · uuid · nullableOptional
sampleDataCsvBlobUrlstring · nullableOptional
400
Bad Request
401
Unauthorized
500
Server Error
get/api/v1/campaigns
GET /api/v1/campaigns HTTP/1.1
Authorization: Basic username:password
Accept: */*
[
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"clientId": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"description": "text",
"startDate": "2026-01-01T00:00:00.000Z",
"duration": 1,
"zapLimit": 1,
"csvPath": "text",
"enabled": true,
"status": "text",
"paperStockId": "123e4567-e89b-12d3-a456-426614174000",
"zapsSent": 1,
"archivedDate": "2026-01-01T00:00:00.000Z",
"templateId": "123e4567-e89b-12d3-a456-426614174000",
"sampleDataCsvBlobUrl": "text"
}
]get
Authorizations
AuthorizationstringRequired
Path parameters
campaignIdstring · uuidRequired
Responses
200
Success
application/json
idstring · uuidOptional
namestring · nullableOptional
descriptionstring · nullableOptional
startDatestring · date-time · nullableOptional
statusstring · nullableOptional
paperStockNamestring · nullableOptional
paperStockIdstring · nullableOptional
frontPublishedDesignstring · nullableOptional
backPublishedDesignstring · nullableOptional
401
Unauthorized
get/api/v1/campaign/{campaignId}
GET /api/v1/campaign/{campaignId} HTTP/1.1
Authorization: Basic username:password
Accept: */*
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "text",
"description": "text",
"startDate": "2026-01-01T00:00:00.000Z",
"status": "text",
"paperStockName": "text",
"paperStockId": "text",
"frontPublishedDesign": "text",
"backPublishedDesign": "text",
"fields": [
{
"name": "text",
"description": "text",
"label": "text",
"exampleValue": "text",
"mandatory": true,
"expectedValues": [
"text"
],
"validationExpressions": [
{
"expression": "text",
"message": "text"
}
]
}
]
}Useful Information
Campaign IDs are required for Submissions
Expected Values
Validation Expressions
Last updated
Was this helpful?