API for managing mounts and associated entities
This operation will return a list of all NFC tags.
Page number of the NFC tags listing. Starts at 1.
Number of NFC tags per page
curl -i -X GET \ 'https://docs.obh-mobility.com/_mock/api-definitions/obh-mobility/nfc-tags?currentPage=1&pageSize=20' \ -H 'Access-Key: YOUR_API_KEY_HERE'
List of all NFC tags with pagination
{ "tags": [ { … } ], "pagination": { "currentPage": 0, "pageSize": 0, "totalItems": 0, "totalPages": 0 } }
This operation will synchronize NFC tags with the given mount.
curl -i -X POST \ https://docs.obh-mobility.com/_mock/api-definitions/obh-mobility/nfc-tags \ -H 'Access-Key: YOUR_API_KEY_HERE' \ -H 'Content-Type: application/json' \ -d '{ "tagUids": [ "string" ], "mountUid": "string" }'
NFC tags synchronized successfully
This operation will update the details of the NFC tag with the given UID.
Human readable name of the NFC tag
color of the NFC tag
Icon name of the NFC tag
curl -i -X PATCH \ 'https://docs.obh-mobility.com/_mock/api-definitions/obh-mobility/nfc-tags/{uid}' \ -H 'Access-Key: YOUR_API_KEY_HERE' \ -H 'Content-Type: application/json' \ -d '{ "name": "string", "color": "string", "iconName": "string" }'
NFC tag updated successfully