POST
/
apps.version.connect
curl --request POST \
  --url https://developer.tempestdx.com/api/v1/apps.version.connect \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "app_id": "<string>",
  "version": "<string>",
  "resources": [
    {
      "type": "<string>",
      "display_name": "<string>",
      "description": "<string>",
      "property_json_schema": {},
      "list_supported": true,
      "read_supported": true,
      "create_supported": true,
      "create_input_schema": {},
      "update_supported": true,
      "update_input_schema": {},
      "delete_supported": true,
      "healthcheck_supported": true,
      "links": {
        "links": [
          {
            "title": "<string>",
            "url": "<string>",
            "type": "documentation"
          }
        ]
      },
      "instructions_markdown": "<string>",
      "lifecycle_stage": "<string>",
      "actions": [
        {
          "name": "<string>",
          "display_name": "<string>",
          "description": "<string>",
          "input_json_schema": {},
          "output_json_schema": {}
        }
      ]
    }
  ]
}'
{
  "status": "ok",
  "message": "<string>",
  "metadata": {
    "tempest_app_url": "<string>"
  },
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
app_id
string
required

The unique identifier of the application.

version
string
required

The version of the application.

resources
object[]
required

Response

200
application/json
Successfully connected to the app version.
status
enum<string>
required

Status of the report operation

Available options:
ok,
error
message
string

A message providing additional information.

metadata
object
error
string | null

Error message if the operation fails.