ChangeHistoryService Types

ChangeHistoryService WSDL


This service is stateless.

Examples +

  • download
.

downloadChangeHistoryReporttop

Description

Builds the full change history audit log for a single campaign and returns it as a
base64-encoded CSV file, without writing to disk or sending an email.

ChangeHistoryFile downloadChangeHistoryReport(int $campaign_id)

Parameters

int $campaign_id

Return Values

ChangeHistoryFile

logintop

Description

Initializes a new session with given information

boolean login(string $user, string $pass, int $network)

Parameters

string $user Username
string $pass Password
int $network $network Network ID

Return Values

boolean true on success, false on fail

logouttop

Description

Destroys the active session, logging out the user.

boolean logout()

Return Values

boolean true on success, false on fail

ChangeHistoryFiletop

Definition

object ChangeHistoryFile {
- string $base64FileContent

required

The file is base64 encoded plain CSV (not compressed).

- string $fileName

required

}

Console