def delete_bundle(api_key, uuid):
    "Delete a bundle, identified by @uuid"
    return _delete_object(api_key, "collectionbundle", uuid)
def delete_collection(api_key, uuid):
    "Delete a collection, identified by @uuid"
    return _delete_object(api_key, "collection", uuid)
def delete_tag(api_key, uuid):
    "Delete a tag, identified by @uuid"
    return _delete_object(api_key, "tag", uuid)
def delete_app(api_key, uuid):
    "Delete an application, identified by @uuid"
    return _delete_object(api_key, "app", uuid)
def delete_token(api_key, token):
    "Delete a token, identified by @token"
    return _delete_object(api_key, "token", token)
def delete_media(api_key, uuid):
    "Delete an image, identified by @uuid"
    return _delete_object(api_key, "media", uuid)
def delete_item(api_key, uuid):
    "Delete an item, identified by @uuid"
    return _delete_object(api_key, "item", uuid)
def delete_image(api_key, uuid):
    "Delete an image, identified by @uuid"
    return _delete_object(api_key, "image", uuid)
def delete_collection(api_key, uuid):
    "Delete a collection, identified by @uuid"
    return _delete_object(api_key, "collection", uuid)
def delete_item(api_key, uuid):
    "Delete an item, identified by @uuid"
    return _delete_object(api_key, "item", uuid)
def delete_media(api_key, uuid):
    "Delete an image, identified by @uuid"
    return _delete_object(api_key, "image", uuid)
def delete_token(api_key, token):
    "Delete a token, identified by @token"
    return _delete_object(api_key, "token", token)
Exemple #13
0
def delete_bundle(api_key, uuid):
    "Delete a bundle, identified by @uuid"
    return _delete_object(api_key, "collectionbundle", uuid)
Exemple #14
0
def delete_app(api_key, uuid):
    "Delete an application, identified by @uuid"
    return _delete_object(api_key, "app", uuid)
Exemple #15
0
def delete_tag(api_key, uuid):
    "Delete a tag, identified by @uuid"
    return _delete_object(api_key, "tag", uuid)