Run Bulk Price Change

This endpoint starts an existing plan subscriber bulk price change push-out job. If it's long-running, poll the job by using Read Service Job

Path Parameters

PropertyTypeDescription
serviceJobIdNumberThe Fusebill generated ID of the service job. This must be a price push out job.
Examples
curl -X POST "https://secure.fusebill.com/v1/SubscriptionProductBulkPriceChange/1234" \
	-H "Content-Type: application/json" \
	-H "Authorization: Basic {APIKey}" \
	-d "{}"
int pathParameter = {serviceJobId};
//Setup API key
string apiKey = "{APIKey}";
//Configure URI
WebRequest request = WebRequest.Create("HTTPS://secure.fusebill.com/v1/SubscriptionProductBulkPriceChange/"+pathParameter);
//Add Content type
request.ContentType = "application/json";
request.ContentLength = 0;
//Add Api key authorization
request.Headers.Add(HttpRequestHeader.Authorization, "Basic "+apiKey);
//Set request method
request.Method = "POST";
//Perform the request
var httpResponse = (HttpWebResponse)request.GetResponse();
//Record the response from our request
var result = "";
using (var streamReader = new StreamReader(httpResponse.GetResponseStream()))
{
  result = streamReader.ReadToEnd();
}
#Import library JSON
import json
#Import library Requests
import requests
#Pass in a dictionary to the Headers parameter
headers = {'Authorization' : 'Basic {APIKey}', 'Content-Type' : 'application/json'}
#Pass in your URI and Headers
r = requests.post('https://secure.fusebill.com/v1/SubscriptionProductBulkPriceChange/1234}', headers=headers)
print(r.content)
This POST call does not take a JSON payload
Response
Returns a 204 No Content Response upon success
{
    "ErrorId": 0,
    "HttpStatusCode": 404,
    "Errors": [
        {
            "Key": "Api Error",
            "Value": "ServiceJob with id 2 not found."
        }
    ]
}
Language
Authorization