curl --request GET \
--url https://server.stage.overflow.co/api/v3/campaigns/{campaignId} \
--header 'x-client-id: <api-key>'{
"data": {
"id": "7710f34fd5061afeec3eab59",
"archivedAt": "2025-01-01T00:00:00.000Z",
"createdAt": "2025-01-01T00:00:00.000Z",
"updatedAt": "2025-01-01T00:00:00.000Z",
"name": "Builders Fundraiser",
"startDate": "2025-01-01T00:00:00.000Z",
"endDate": "2025-12-01T00:00:00.000Z",
"status": "ACTIVE",
"displayOrder": 1,
"isSubcampaign": false,
"hideFromDonors": false,
"parentCampaigns": [
{
"id": "<string>",
"name": "<string>"
}
],
"subcampaigns": [
{
"id": "<string>",
"name": "<string>"
}
],
"applyToAllCampaigns": true,
"totalContributionCount": 100,
"totalContributionValue": 1000,
"uniqueDonorCount": 100
}
}Returns campaign/subcampaign for given ID.
curl --request GET \
--url https://server.stage.overflow.co/api/v3/campaigns/{campaignId} \
--header 'x-client-id: <api-key>'{
"data": {
"id": "7710f34fd5061afeec3eab59",
"archivedAt": "2025-01-01T00:00:00.000Z",
"createdAt": "2025-01-01T00:00:00.000Z",
"updatedAt": "2025-01-01T00:00:00.000Z",
"name": "Builders Fundraiser",
"startDate": "2025-01-01T00:00:00.000Z",
"endDate": "2025-12-01T00:00:00.000Z",
"status": "ACTIVE",
"displayOrder": 1,
"isSubcampaign": false,
"hideFromDonors": false,
"parentCampaigns": [
{
"id": "<string>",
"name": "<string>"
}
],
"subcampaigns": [
{
"id": "<string>",
"name": "<string>"
}
],
"applyToAllCampaigns": true,
"totalContributionCount": 100,
"totalContributionValue": 1000,
"uniqueDonorCount": 100
}
}Client ID for API authentication
The Id of the campaign/subcampaign to get.
"2ea1ae03ca521e437db76d76"
Campaign for the given id.
Show child attributes
Campaign Id
"7710f34fd5061afeec3eab59"
Campaign archived at
"2025-01-01T00:00:00.000Z"
Campaign created at
"2025-01-01T00:00:00.000Z"
Campaign updated at
"2025-01-01T00:00:00.000Z"
Campaign name
"Builders Fundraiser"
Campaign start date
"2025-01-01T00:00:00.000Z"
Campaign end date
"2025-12-01T00:00:00.000Z"
Campaign status
ACTIVE, ARCHIVED, EXPIRED, UPCOMING "ACTIVE"
Campaign display order
1
Whether the campaign is a subcampaign
Whether the campaign is hidden from donors
Whether the subcampaign is applied to all campaigns
Total number of contributions towards this campaign
100
Total value of contributions towards this campaign
1000
Total number of unique donors who have donated to this campaign
100
Was this page helpful?