RefreshSegment

Refreshes a segment by ID

This method allows you to refresh a segment by its ID.

SOAP action: http://apiconnector.com/v2/ApiService/RefreshSegment

📘

Input and output parameters

The input and output parameters for this method are:

Input parameters

  • Segment ID - required; integer

Output parameters

  • RefreshSegmentResult
    ID - _integer*
    Status - _string ('NotStarted', 'NotFinished', 'Finished', 'Failed')*

Example

using (var client = new ApiServiceClient())
{
	client.ClientCredentials.UserName.UserName = "username";
	client.ClientCredentials.UserName.Password = "password";

	var segmentId = 1;
	var segmentRefresh = client.RefreshSegment(segmentId);
}