Update user subscription topic
Update or Create user preferences for a specific subscription topic
URL: https://api.courier.com/users/:user_id/preferences/:topic_id
Method: PUT
Path Parameters
user_idstringrequired
A unique identifier associated with the user whose preferences you wish to update.
topic_idstringrequired
A unique identifier associated with a subscription topic.
Body Parameters
statusstringrequired
The preference status the user has set for a subscription topic.
has_custom_routingboolean
Whether or not a user has set a channel preference for subscription topic. If false, custom_routing is ignored and the topic preference is used.
custom_routingarray
The Channels a user has chosen to receive notifications through for this topic
Responses
status: 200 OK
messagestring
status: 400 Bad Request
messagestring
A message describing the error that occurred.
typestring
[invalid_request_error] The type of error that occurred.
Request Example
- cURL
- Node.js
- Ruby
- Python
- Go
- PHP
curl --request PUT \
--url https://api.courier.com/users/example_user_id/preferences/FW0YU64P4TMYKMMHH67D6FENX8VS \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '
{
"topic": {
"status": "OPTED_OUT"
}
}
'
// Dependencies to install:
// $ npm install node-fetch --save
const fetch = require('node-fetch');
const options = {
method: 'PUT',
headers: {
Accept: 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"topic": {
"status": "OPTED_OUT"
}
})
};
fetch('https://api.courier.com/users/example_user_id/preferences/FW0YU64P4TMYKMMHH67D6FENX8VS', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
require 'uri'
require 'net/http'
require 'openssl'
url = URI("https://api.courier.com/users/example_user_id/preferences/FW0YU64P4TMYKMMHH67D6FENX8VS")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Accept"] = 'application/json'
request["Content-Type"] = 'application/json'
request.body = "{\"topic\":{\"status\":\"OPTED_OUT\"}}"
response = http.request(request)
puts response.read_body
# Dependencies to install:
# $ python -m pip install requests
import requests
url = "https://api.courier.com/users/example_user_id/preferences/FW0YU64P4TMYKMMHH67D6FENX8VS"
payload = {
"topic": {
"status": "OPTED_OUT"
}
}
headers = {
"Accept": "application/json",
"Content-Type": "application/json"
}
response = requests.request("PUT", url, json=payload, headers=headers)
print(response.text)
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "https://api.courier.com/users/example_user_id/preferences/FW0YU64P4TMYKMMHH67D6FENX8VS"
payload := strings.NewReader("{\"topic\":{\"status\":\"OPTED_OUT\"}}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("Accept", "application/json")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
<?php
// Dependencies to install:
// $ composer require guzzlehttp/guzzle
require_once('vendor/autoload.php');
$client = new \GuzzleHttp\Client();
$response = $client->request('PUT', 'https://api.courier.com/users/example_user_id/preferences/FW0YU64P4TMYKMMHH67D6FENX8VS', [
'body' => '{"topic":{"status":"OPTED_OUT"}}',
'headers' => [
'Accept' => 'application/json',
'Content-Type' => 'application/json',
],
]);
echo $response->getBody();
Responses Example
{
"message": "success"
}
{
"message": "Error Message",
"type": "invalid_request_error"
}
Method: PUT
URL: https://api.courier.com/users/example_user_id/preferences/FW0YU64P4TMYKMMHH67D6FENX8VS
// Sample User Preference Input
{
"topic": { "status": "OPTED_OUT", "has_custom_routing": true, "custom_routing": ["sms", "push"] }
}