Skip to main content

Update a schedule

PUT 

https://euwest.api.elasticpath.com/v2/subscriptions/schedules/:schedule_uuid

Update a schedule

Request

Responses

Success. The schedule details are returned.

Authorization: http

name: BearerTokentype: httpscheme: bearer
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Put, "https://euwest.api.elasticpath.com/v2/subscriptions/schedules/:schedule_uuid");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var content = new StringContent("{\n \"data\": {\n \"id\": \"11111111-2222-3333-4444-555555555555\",\n \"type\": \"subscription_schedule\",\n \"attributes\": {\n \"external_ref\": \"abc123\",\n \"name\": \"Daily billing run.\",\n \"specification\": \"30 0 * * *\",\n \"location\": \"Europe/London\",\n \"job\": {\n \"job_type\": \"billing-run\"\n }\n }\n }\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://euwest.api.elasticpath.com/v2
Auth
Parameters
— pathrequired
Body
{
  "data": {
    "id": "11111111-2222-3333-4444-555555555555",
    "type": "subscription_schedule",
    "attributes": {
      "external_ref": "abc123",
      "name": "Daily billing run.",
      "specification": "30 0 * * *",
      "location": "Europe/London",
      "job": {
        "job_type": "billing-run"
      }
    }
  }
}
ResponseClear

Click the Send API Request button above and see the response here!