Can I send com.apple.mdm.token server capability using declaration?

Hi Team, I want to send server capability to iphone for watchos pairing token . I tried following payload and its not working. Can you provide example of it?. Also how to find server protocol version. I could not find any documentation around it.

{
    "Identifier": "server-capabilities-list",
    "ServerToken": "$serverToken",
    "Type": "com.apple.management.server-capabilities",
    "Payload": {
		"Version": "2",
        "SupportedFeatures": {
			"com.apple.mdm.token" : {},
		}
    }
} 

https://developer.apple.com/documentation/devicemanagement/managementservercapabilities

I am able to send this to device however status items report as inactive. Why is that ?

"com.apple.mdm.token" needs to be present in the ServerCapabilities key of the MDM profile on the device: https://developer.apple.com/documentation/devicemanagement/mdm?language=objc

Can I send com.apple.mdm.token server capability using declaration?
 
 
Q