SOP-18:提交診所認領申請
API SOP申請診所列表的所有權,待管理員審核驗證。
3 個節點 · 2 條連接medirank
apisopmedirankclaim-requests
視覺化
ex-sop-18-claim-clinic.osop.yaml
# 原始:SOP-18: 申請認領診所
osop_version: '1.0'
id: sop-18-claim-clinic
name: "SOP-18:提交診所認領申請"
description: "申請診所列表的所有權,待管理員審核驗證。"
version: 1.0.0
tags:
- api
- sop
- medirank
- claim-requests
nodes:
- id: step_1
type: api
subtype: rest
name: POST /claim-requests
description: Request ownership of a clinic listing.
runtime:
method: POST
url: https://medi-rank.com/api/v1
endpoint: /claim-requests
headers:
Authorization: Bearer ${secrets.TOKEN}
body:
clinic_id: 1
name: Dr. Lin
email: lin@clinic.com
phone: 02-12345678
message: I am the owner of this clinic
- id: step_2
type: human
subtype: review
name: Admin reviews claim
description: Administrator verifies the claimant's identity.
- id: step_3
type: api
subtype: rest
name: POST /claim-requests/{claim_id}/review
description: Admin approves or rejects the claim. Approval auto-assigns clinic ownership.
runtime:
method: POST
url: https://medi-rank.com/api/v1
endpoint: /claim-requests/{claim_id}/review
headers:
Authorization: Bearer ${secrets.TOKEN}
body:
status: approved
review_notes: Identity verified
edges:
- from: step_1
to: step_2
mode: sequential
- from: step_2
to: step_3
mode: sequential