Unbind Device
curl --request POST \
--url https://platform-us.plaud.ai/developer/api/open/partner/sdk/unbind \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: <content-type>' \
--data '
{
"type": "notepro",
"sn": "8810000000000001"
}
'import requests
url = "https://platform-us.plaud.ai/developer/api/open/partner/sdk/unbind"
payload = {
"type": "notepro",
"sn": "8810000000000001"
}
headers = {
"Content-Type": "<content-type>",
"Authorization": "Bearer <token>"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"type": "notepro",
"sn": "8810000000000001",
"is_bind": false
}Device Binding API
Unbind Device
Removes the device/owner association in the Plaud registry. Unbinding an already-unbound device is idempotent, so multiple calls have no side effects.
Plaud devices can only be bound to one application at a time. Unbind over both cloud and BLE — call this endpoint and call depair(clear: true) on the Embedded SDK — so the cloud and local bind state stay in sync.
POST
/
open
/
partner
/
sdk
/
unbind
Unbind Device
curl --request POST \
--url https://platform-us.plaud.ai/developer/api/open/partner/sdk/unbind \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: <content-type>' \
--data '
{
"type": "notepro",
"sn": "8810000000000001"
}
'import requests
url = "https://platform-us.plaud.ai/developer/api/open/partner/sdk/unbind"
payload = {
"type": "notepro",
"sn": "8810000000000001"
}
headers = {
"Content-Type": "<content-type>",
"Authorization": "Bearer <token>"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"type": "notepro",
"sn": "8810000000000001",
"is_bind": false
}Authorizations
Bearer authentication using a User Token. See the Authentication API reference for how to mint one.
Headers
Body
application/json
Was this page helpful?