IJobApiDelete Method

Delete the existing Job Information

Definition

Namespace: Casewhere.Runtime.DSL.Api
Assembly: Casewhere.Runtime (in Casewhere.Runtime.dll) Version: 2.9.8.6
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