Update Subscription
The Update Subscription API allows to enable or disable the required subscription.
Method: POST
{{URL}}/jsonrpc
Headers
Name | Value |
---|---|
Content-Type | application/json |
Example
Payload Parameters
Parameter | Description |
---|---|
id Mandatory | String Subscription Id Example - "SUB443001" |
status Mandatory | String Status of the subscription to be updated Example - "DISABLED" |
- cURL
- C#
- Go
- NodeJs
curl --location '' \
--header 'Content-Type: application/json' \
--data '{"id":"SUB443001","status":"DISABLED"}'
var options = new RestClientOptions("")
{
MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("", Method.Post);
request.AddHeader("Content-Type", "application/json");
var body = @"{
" + "\n" +
@" ""id"": ""SUB443001"",
" + "\n" +
@" ""status"": ""DISABLED""
" + "\n" +
@"}";
request.AddStringBody(body, DataFormat.Json);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := ""
method := "POST"
payload := strings.NewReader(`{`+"
"+`
"id": "SUB443001",`+"
"+`
"status": "DISABLED"`+"
"+`
}`)
client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
var https = require('follow-redirects').https;
var fs = require('fs');
var options = {
'method': 'POST',
'hostname': '',
'path': '/',
'headers': {
'Content-Type': 'application/json'
},
'maxRedirects': 20
};
var req = https.request(options, function (res) {
var chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function (chunk) {
var body = Buffer.concat(chunks);
console.log(body.toString());
});
res.on("error", function (error) {
console.error(error);
});
});
var postData = JSON.stringify({
"id": "SUB443001",
"status": "DISABLED"
});
req.write(postData);
req.end();
Body
{
"id": "SUB443001",
"status": "DISABLED"
}
Response: 200
Payload Parameters
Parameter | Description |
---|---|
response | String Response Message Example - "Subscription Updated successfully" |
{
"response": "Subscription Updated successfully"
}