I have all of 1 day of experience using curl and perusing Box's APIs! :), so forgive me for such a novice question. The following curl syntax works in retrieving the shared link info. for a given file in my environment:
curl -H "Authorization: Bearer TOKEN ENTERED HERE" -X GET https://api.box.com/2.0/files/ ID>?fields=shared_link
But this syntax does not remove the shared link as I thought it should according to https://developer.box.com/v2.0/reference#shared-link-object
curl -H "Authorization: Bearer TOKEN ENTERED HERE" -X PUT https://api.box.com/2.0/files/ ID>?fields=shared_link=null
Also, this syntax does not update the expiration date of the shared link to June 17 of this year:
curl -H "Authorization: Bearer TOKEN ENTERED HERE" -X PUT https://api.box.com/2.0/files/ ID>?fields=shared_link.unshared_at=2017-06-17
Any insight would be greatly appreciated!!


