Skip to main content

Create a job

POST 

https://euwest.api.elasticpath.com/v2/subscriptions/jobs

Create a job

Request

Responses

Success. The job was created.

Authorization: http

name: BearerTokentype: httpscheme: bearer
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());
Request Collapse all
Base URL
https://euwest.api.elasticpath.com/v2
Auth
Parameters
— query
Body
{
  "data": {
    "type": "subscription_job",
    "attributes": {
      "external_ref": "abc123",
      "job_type": "billing-run",
      "taxes": [
        {
          "invoice_id": "11111111-2222-3333-4444-555555555555",
          "tax_items": [
            {
              "type": "tax_item",
              "name": "GST",
              "code": "20.0 % S",
              "rate": 0.2,
              "jurisdiction": "USA"
            }
          ]
        }
      ]
    }
  }
}
ResponseClear

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