Bind Device
curl --request POST \
--url https://platform-us.plaud.ai/developer/api/open/partner/sdk/bind \
--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/bind"
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": true
}{
"code": 403,
"message": "device already bound to another account"
}Device Binding API
Bind Device
Registers the device/owner association in the Plaud registry. Re-binding a device to the same owner is idempotent, so multiple calls will not have side effects.
POST
/
open
/
partner
/
sdk
/
bind
Bind Device
curl --request POST \
--url https://platform-us.plaud.ai/developer/api/open/partner/sdk/bind \
--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/bind"
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": true
}{
"code": 403,
"message": "device already bound to another account"
}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?