Skip to content
Oris Docs

External KYA

POST /api/v1/oris/external-kya/attach

Attach an external KYA provider attestation to an Oris agent

Verifies a third-party-issued JWT against the provider's JWKS, binds it to an Oris-managed agent, and returns the Living KYA overlay computed from Oris-side behavioural signals.

Auth: Ed25519 request signing. Send Authorization, X-Request-Signature, X-Timestamp, and X-Nonce headers on every call. Nonce TTL is thirty seconds.

Request body

application/json, schema: AttachRequest

Responses

StatusDescription
200 Successful Response
422 Validation Error

Example request

curl -X POST 'https://api.useoris.xyz/api/v1/oris/external-kya/attach' \
  -H 'Authorization: oris_sk_live_***' \
  -H 'X-Request-Signature: ***' \
  -H 'X-Timestamp: $(date +%s)' \
  -H 'X-Nonce: $(uuidgen)' \
  -H 'Content-Type: application/json' \
  -d '{...}'