| Requires any of the roles: | Client, Admin, Partner |
| POST | /campaign/unpause/{PublicAccessGuid} | Pause Campaign |
|---|
export class UnPauseCampaignResponse
{
public Success: boolean;
public ResponseStatus: ResponseStatus;
public constructor(init?: Partial<UnPauseCampaignResponse>) { (Object as any).assign(this, init); }
}
export class UnPauseCampaign
{
// @DataMember(Order=2)
// @Validate(Validator="NotNull")
public PublicAccessGuid: string;
public constructor(init?: Partial<UnPauseCampaign>) { (Object as any).assign(this, init); }
}
TypeScript UnPauseCampaign DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /campaign/unpause/{PublicAccessGuid} HTTP/1.1
Host: duengageapi.uat.scadsoftware.com
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
PublicAccessGuid: 00000000000000000000000000000000
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
Success: False,
ResponseStatus:
{
ErrorCode: String,
Message: String,
StackTrace: String,
Errors:
[
{
ErrorCode: String,
FieldName: String,
Message: String,
Meta:
{
String: String
}
}
],
Meta:
{
String: String
}
}
}