11-28-2024 03:44 AM
i am using the CDO (SCC) API to onboard a FTD with serial number with ZTP, but when i send my post request with the data below
Solved! Go to Solution.
11-29-2024 02:09 AM
Hi
I don't know the API and have never used it, so this is just a guess. However, based on the documentation, it seems that 'licenses' is an enum. Therefore, I think you should try using a string as the value instead of a list
enum = ["BASE", "CARRIER", "MALWARE", "THREAT", "URLFilter"]
{
"fmcAccessPolicyUid": "<access_policy_uid>",
"licenses": "BASE",
"name": "<device_name>",
"serialNumber": "<device_serial>",
"adminPassword": "<admin_password>"
}
11-29-2024 02:09 AM
Hi
I don't know the API and have never used it, so this is just a guess. However, based on the documentation, it seems that 'licenses' is an enum. Therefore, I think you should try using a string as the value instead of a list
enum = ["BASE", "CARRIER", "MALWARE", "THREAT", "URLFilter"]
{
"fmcAccessPolicyUid": "<access_policy_uid>",
"licenses": "BASE",
"name": "<device_name>",
"serialNumber": "<device_serial>",
"adminPassword": "<admin_password>"
}
11-29-2024 02:26 AM
Thank you so much it worked i thought i had tried that but obviously not
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide