GET api/Campaigns/Detail?id={id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
Body Parameters
None.
Response Information
Resource Description
CampaignDetailModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Title | string |
None. |
|
| ProjectId | integer |
None. |
|
| DateStart | date |
None. |
|
| DateEnd | date |
None. |
|
| Description | string |
None. |
|
| IsActive | boolean |
None. |
|
| DateActive | date |
None. |
|
| IsSendMail | boolean |
None. |
|
| MailId | globally unique identifier |
None. |
|
| ContentMail | string |
None. |
|
| IsSendSMS | boolean |
None. |
|
| SMSId | globally unique identifier |
None. |
|
| ContentSMS | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"id": "36587480-7591-4a7c-84b7-cad2963f0113",
"title": "sample string 2",
"projectId": 3,
"dateStart": "2025-12-06T12:27:07.026741+07:00",
"dateEnd": "2025-12-06T12:27:07.026741+07:00",
"description": "sample string 4",
"isActive": true,
"dateActive": "2025-12-06T12:27:07.026741+07:00",
"isSendMail": true,
"mailId": "292ee479-6e1e-4a49-96a5-fa9e65f8394a",
"contentMail": "sample string 7",
"isSendSMS": true,
"smsId": "1db73108-205c-46a5-aa1e-0c3d1381ac37",
"contentSMS": "sample string 9"
}
application/xml, text/xml
Sample:
<CampaignDetailModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgencyWebAPI.Models.Campaign"> <ContentMail>sample string 7</ContentMail> <ContentSMS>sample string 9</ContentSMS> <DateActive>2025-12-06T12:27:07.026741+07:00</DateActive> <DateEnd>2025-12-06T12:27:07.026741+07:00</DateEnd> <DateStart>2025-12-06T12:27:07.026741+07:00</DateStart> <Description>sample string 4</Description> <Id>36587480-7591-4a7c-84b7-cad2963f0113</Id> <IsActive>true</IsActive> <IsSendMail>true</IsSendMail> <IsSendSMS>true</IsSendSMS> <MailId>292ee479-6e1e-4a49-96a5-fa9e65f8394a</MailId> <ProjectId>3</ProjectId> <SMSId>1db73108-205c-46a5-aa1e-0c3d1381ac37</SMSId> <Title>sample string 2</Title> </CampaignDetailModel>