Readers
Update reader
PATCH
/
api
/
v1
/
readers
/
{id}
Update reader
curl --request PATCH \
--url https://api.passentry.com/api/v1/readers/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"reader": {
"id": "south-gate-3",
"password": "Test789!",
"mifareClassicNfcEnabled": true,
"scanEnabled": false,
"redeemEnabled": true,
"qrEnabled": true
}
}
'import requests
url = "https://api.passentry.com/api/v1/readers/{id}"
payload = { "reader": {
"id": "south-gate-3",
"password": "Test789!",
"mifareClassicNfcEnabled": True,
"scanEnabled": False,
"redeemEnabled": True,
"qrEnabled": True
} }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
reader: {
id: 'south-gate-3',
password: 'Test789!',
mifareClassicNfcEnabled: true,
scanEnabled: false,
redeemEnabled: true,
qrEnabled: true
}
})
};
fetch('https://api.passentry.com/api/v1/readers/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.passentry.com/api/v1/readers/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'reader' => [
'id' => 'south-gate-3',
'password' => 'Test789!',
'mifareClassicNfcEnabled' => true,
'scanEnabled' => false,
'redeemEnabled' => true,
'qrEnabled' => true
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.passentry.com/api/v1/readers/{id}"
payload := strings.NewReader("{\n \"reader\": {\n \"id\": \"south-gate-3\",\n \"password\": \"Test789!\",\n \"mifareClassicNfcEnabled\": true,\n \"scanEnabled\": false,\n \"redeemEnabled\": true,\n \"qrEnabled\": true\n }\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.passentry.com/api/v1/readers/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"reader\": {\n \"id\": \"south-gate-3\",\n \"password\": \"Test789!\",\n \"mifareClassicNfcEnabled\": true,\n \"scanEnabled\": false,\n \"redeemEnabled\": true,\n \"qrEnabled\": true\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.passentry.com/api/v1/readers/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"reader\": {\n \"id\": \"south-gate-3\",\n \"password\": \"Test789!\",\n \"mifareClassicNfcEnabled\": true,\n \"scanEnabled\": false,\n \"redeemEnabled\": true,\n \"qrEnabled\": true\n }\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "south-gate-3",
"type": "reader",
"attributes": {
"name": "South Gate Reader",
"readerType": "PassentryReader",
"loggedIn": false,
"qrEnabled": true,
"mifareClassicNfcEnabled": true,
"scanEnabled": false,
"redeemEnabled": true,
"addPointsEnabled": false,
"ndefTagScanningEnabled": false,
"lastSeenAt": "2020-03-13T13:00:00Z"
}
}
}{
"errors": [
"<string>"
]
}{
"errors": [
"<string>"
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Reader ID
Body
application/json
Show child attributes
Show child attributes
Was this page helpful?
⌘I
Update reader
curl --request PATCH \
--url https://api.passentry.com/api/v1/readers/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"reader": {
"id": "south-gate-3",
"password": "Test789!",
"mifareClassicNfcEnabled": true,
"scanEnabled": false,
"redeemEnabled": true,
"qrEnabled": true
}
}
'import requests
url = "https://api.passentry.com/api/v1/readers/{id}"
payload = { "reader": {
"id": "south-gate-3",
"password": "Test789!",
"mifareClassicNfcEnabled": True,
"scanEnabled": False,
"redeemEnabled": True,
"qrEnabled": True
} }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
reader: {
id: 'south-gate-3',
password: 'Test789!',
mifareClassicNfcEnabled: true,
scanEnabled: false,
redeemEnabled: true,
qrEnabled: true
}
})
};
fetch('https://api.passentry.com/api/v1/readers/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.passentry.com/api/v1/readers/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'reader' => [
'id' => 'south-gate-3',
'password' => 'Test789!',
'mifareClassicNfcEnabled' => true,
'scanEnabled' => false,
'redeemEnabled' => true,
'qrEnabled' => true
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.passentry.com/api/v1/readers/{id}"
payload := strings.NewReader("{\n \"reader\": {\n \"id\": \"south-gate-3\",\n \"password\": \"Test789!\",\n \"mifareClassicNfcEnabled\": true,\n \"scanEnabled\": false,\n \"redeemEnabled\": true,\n \"qrEnabled\": true\n }\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.patch("https://api.passentry.com/api/v1/readers/{id}")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"reader\": {\n \"id\": \"south-gate-3\",\n \"password\": \"Test789!\",\n \"mifareClassicNfcEnabled\": true,\n \"scanEnabled\": false,\n \"redeemEnabled\": true,\n \"qrEnabled\": true\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.passentry.com/api/v1/readers/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"reader\": {\n \"id\": \"south-gate-3\",\n \"password\": \"Test789!\",\n \"mifareClassicNfcEnabled\": true,\n \"scanEnabled\": false,\n \"redeemEnabled\": true,\n \"qrEnabled\": true\n }\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "south-gate-3",
"type": "reader",
"attributes": {
"name": "South Gate Reader",
"readerType": "PassentryReader",
"loggedIn": false,
"qrEnabled": true,
"mifareClassicNfcEnabled": true,
"scanEnabled": false,
"redeemEnabled": true,
"addPointsEnabled": false,
"ndefTagScanningEnabled": false,
"lastSeenAt": "2020-03-13T13:00:00Z"
}
}
}{
"errors": [
"<string>"
]
}{
"errors": [
"<string>"
]
}