diff --git a/docs/api/PostPhotoDelete.markdown b/docs/api/PostPhotoDelete.markdown
index a4d3dfa..7a839c3 100644
--- a/docs/api/PostPhotoDelete.markdown
+++ b/docs/api/PostPhotoDelete.markdown
@@ -27,7 +27,7 @@ Use this API to delete an action.
_Authentication: required_
- POST /action/:id/delete.json
+ POST /photo/:id/delete.json
### Parameters
@@ -42,13 +42,13 @@ _None_
#### Command Line (using [openphoto-php][openphoto-php])
- ./openphoto -p -X POST -h current.openphoto.me -e /action/a/delete.json
+ ./openphoto -p -X POST -h current.openphoto.me -e /photo/a/delete.json
#### PHP (using [openphoto-php][openphoto-php])
$client = new OpenPhotoOAuth($host, $consumerKey, $consumerSecret, $oauthToken, $oauthTokenSecret);
- $response = $client->post("/action/a/delete.json");
+ $response = $client->post("/photo/a/delete.json");
----------------------------------------