Create a job
POSThttps://euwest.api.elasticpath.com/v2/subscriptions/jobs
Create a job
Request
Responses
- 201
- 400
- 409
- 500
Success. The job was created.
Bad request. The request failed validation.
Write conflict. Unable to perform the operation at this time.
Internal server error. There was a system failure in the platform.
Authorization: http
name: BearerTokentype: httpscheme: bearer
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://euwest.api.elasticpath.com/v2/subscriptions/jobs");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <token>");
var content = new StringContent("{\n \"data\": {\n \"type\": \"subscription_job\",\n \"attributes\": {\n \"external_ref\": \"abc123\",\n \"job_type\": \"billing-run\",\n \"taxes\": [\n {\n \"invoice_id\": \"11111111-2222-3333-4444-555555555555\",\n \"tax_items\": [\n {\n \"type\": \"tax_item\",\n \"name\": \"GST\",\n \"code\": \"20.0 % S\",\n \"rate\": 0.2,\n \"jurisdiction\": \"USA\"\n }\n ]\n }\n ]\n }\n }\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear