Click or drag to resize

IJobApiDelete Method

Delete the existing Job Information

Namespace: Casewhere.Runtime.DSL.Api
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.8.5.0
Syntax
C#
void Delete(
	string id
)

Parameters

id  String
The Job Id
Example
C#
var jobApi = ctx.Use<IJobApi>();
var jobId = "theJobId";
jobApi.Delete(jobId, schedule);
See Also