RemoveTagAsync

Remove a tag from the object Returns ()Exception Type: FailedOutcomeExceptionThrown with Error Code 404 (notfound) if called passing a non-existent tag

Disconnect a Tag from the designated Base.

Name Description
baseInfo Object to be updated
tag Tag value to remove.

Remove Tag Async

Example in C#

// Returns: nothing
await client.RemoveTagAsync(BaseInfo baseInfo, String tag);

Example in CURL



           curl -X POST \
               https://keepapi.feenicshosting.com/api/f/INSTANCE.KEY/people/PERSON.KEY/tags/tagexampleforcurl \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -d '"curlexampleoftag"'