Document Version 2.0.1
VAddy WebAPI クロールデータ削除の仕様書です。
クロールIDを指定してクロールレデータを削除するAPIです。
本APIはVAddyのV1/V2全てのプロジェクトが対象です。
クロールステータスがRecorded
、Cancel
のものが削除可能です。Crawling
のものは削除できません。
https://api.vaddy.net/v2/crawl/delete
Method : POST
user=vaddyuser
auth_key=123456
project_number=123
crawl_id=2
auth_key
は、ユーザ毎に発行する認証キーです。VAddyログイン後のWebAPI管理画面にて取得してください。
管理画面のログインIDをuser
パラメータに、API Auth Keyをauth_key
パラメータにセットしてください。
auth_key
はHTTPヘッダーの X-API-KEY
に指定することもできます。
project_number
は、プロジェクト単位で自動付与される数字の番号です。
https://console.vaddy.net/project/123
のように各プロジェクト画面のURLの末尾にある数字がproject_numberです。
project_idとは異なりますのでご注意ください。
crawl_idはVAddy管理画面のクロール一覧画面のテーブルのCrawl ID
列にある数字です。
curl 'https://api.vaddy.net/v2/crawl/delete' \
-X POST -d 'user=foo&auth_key=xxxxx&project_number=99999&crawl_id=88'
ステータスコード : 200
content-type : application/json
コンテンツ:
{"message":"ok"}
ステータスコード : 401 Unauthorized
ステータスコード : 404
content-type : application/json
コンテンツ:
{"error_message":"crawl_id not found."}
ステータスコード : 400
content-type : application/json
コンテンツ:
{"error_message":"not match project"}