Ejemplo n.º 1
0
def delete_bundle(api_key, uuid):
    "Delete a bundle, identified by @uuid"
    return _delete_object(api_key, "collectionbundle", uuid)
Ejemplo n.º 2
0
def delete_collection(api_key, uuid):
    "Delete a collection, identified by @uuid"
    return _delete_object(api_key, "collection", uuid)
Ejemplo n.º 3
0
def delete_tag(api_key, uuid):
    "Delete a tag, identified by @uuid"
    return _delete_object(api_key, "tag", uuid)
Ejemplo n.º 4
0
def delete_app(api_key, uuid):
    "Delete an application, identified by @uuid"
    return _delete_object(api_key, "app", uuid)
Ejemplo n.º 5
0
def delete_token(api_key, token):
    "Delete a token, identified by @token"
    return _delete_object(api_key, "token", token)
Ejemplo n.º 6
0
def delete_media(api_key, uuid):
    "Delete an image, identified by @uuid"
    return _delete_object(api_key, "media", uuid)
Ejemplo n.º 7
0
def delete_item(api_key, uuid):
    "Delete an item, identified by @uuid"
    return _delete_object(api_key, "item", uuid)
Ejemplo n.º 8
0
def delete_image(api_key, uuid):
    "Delete an image, identified by @uuid"
    return _delete_object(api_key, "image", uuid)
Ejemplo n.º 9
0
def delete_collection(api_key, uuid):
    "Delete a collection, identified by @uuid"
    return _delete_object(api_key, "collection", uuid)
Ejemplo n.º 10
0
def delete_item(api_key, uuid):
    "Delete an item, identified by @uuid"
    return _delete_object(api_key, "item", uuid)
Ejemplo n.º 11
0
def delete_media(api_key, uuid):
    "Delete an image, identified by @uuid"
    return _delete_object(api_key, "image", uuid)
Ejemplo n.º 12
0
def delete_token(api_key, token):
    "Delete a token, identified by @token"
    return _delete_object(api_key, "token", token)
Ejemplo n.º 13
0
def delete_bundle(api_key, uuid):
    "Delete a bundle, identified by @uuid"
    return _delete_object(api_key, "collectionbundle", uuid)
Ejemplo n.º 14
0
def delete_app(api_key, uuid):
    "Delete an application, identified by @uuid"
    return _delete_object(api_key, "app", uuid)
Ejemplo n.º 15
0
def delete_tag(api_key, uuid):
    "Delete a tag, identified by @uuid"
    return _delete_object(api_key, "tag", uuid)