Skip to main content

deleteDeviceProfile

Delete a set of device profiles by ID

deleteDeviceProfile(
id: ID!
): DeleteDeviceProfileResult!

Arguments

deleteDeviceProfile.id ● ID! non-null scalar common

Type

DeleteDeviceProfileResult object device-profiles

Code Samples

curl -X POST https://graphql.pointonenav.com/graphql \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_TOKEN" \
-d '{
"query": "mutation DeleteDeviceProfile($id: ID!) { deleteDeviceProfile(id: $id) { success } }",
"variables": {
"id": "your-profile-id"
}
}'