Skip to main content

Delete folder with php

Comments

2 comments

  • Babu Desai

    I just ended up using guzzlehttp worked out pretty good. anyone wondering

    $client = new GuzzleHttp\Client();
    $res = $client->request('DELETE', 'https://api.cloudinary.com/v1_1/(cloud-name)/folders/(folder-name)', [
    'auth' => ['api key', 'secret key']
    ]);
    echo $res->getStatusCode();
    3
  • Shirly Manor

    Thank you for the update!

    0

Post is closed for comments.