PUT
/
interactions
/
{id}
/
codes
curl --request PUT \
  --url https://api.{environment}.corti.app/v2/interactions/{id}/codes \
  --header 'Content-Type: application/json' \
  --data '{
  "finalCodes": [
    {
      "code": "W0231",
      "additionalCodes": [
        "<string>"
      ]
    }
  ]
}'
{
  "codes": [
    {
      "system": "ICD-10",
      "code": "T933",
      "description": "<string>",
      "state": {
        "isSelected": true,
        "source": "core"
      },
      "additionalCodes": [
        {
          "subsetName": "orsakskoder",
          "code": "W0231",
          "description": "<string>",
          "state": {
            "isSelected": true,
            "source": "core"
          }
        }
      ]
    }
  ]
}

Headers

Tenant-Name
string

Identifies a distinct entity within Corti's multi-tenant system. Ensures correct routing and authentication of the request.

Example:

"copiloteu"

Path Parameters

id
string
required

The interaction ID representing the context for the request.

Body

application/json
finalCodes
object[]

Response

200
application/json
codes
object[]