FHIR的REST接口形式

来源:互联网 发布:steam mac 下载速度慢 编辑:程序博客网 时间:2024/05/08 19:15
  • Create = POST https://example.com/path/{resourceType}
  • Read = GET https://example.com/path/{resourceType}/{id}
  • Update = PUT https://example.com/path/{resourceType}/{id}
  • Delete = DELETE https://example.com/path/{resourceType}/{id}
  • Search = GET https://example.com/path/{resourceType}?search parameters...
  • History = GET https://example.com/path/{resourceType}/{id}/_history
  • Transaction = POST https://example.com/path/ (POST a tranasction bundle to the system)
  • Operation = GET https://example.com/path/{resourceType}/{id}/${opname}

0 0
原创粉丝点击