コンテンツにスキップ

Web API for .NET

HTTP 動詞

Action Method Success Failure
Create POST 201 (Created) 400 (Bad Request)
Read GET 200 (OK) 404 (Not Found)
Update PUT / PATCH 204 (No Content) 404 (Not Found)
Delete DELETE 204 (No Content) 400 (Bad Request)

ルーティング

https://example.com/v1.0/me

  • https: → スキーマ
  • example.com → ホスト名
  • v1.0/me → パス

YouTube

Reference

Web API のテストに使えるサイト? - math.js