POST
/
resources.get
curl --request POST \
  --url https://developer.tempestdx.com/api/v1/resources.get \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "<string>"
}'
{
  "id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "created_by": "<string>",
  "deleted_at": "2023-11-07T05:31:56Z",
  "display_name": "<string>",
  "external_id": "<string>",
  "external_url": "<string>",
  "name": "<string>",
  "organization_id": "<string>",
  "type": "<string>",
  "status": "<string>",
  "synced_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "properties": {},
  "links": {
    "links": [
      {
        "title": "<string>",
        "url": "<string>",
        "type": "documentation"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
id
string
required

The unique identifier of the object.

Response

200
application/json
Resource details retrieved successfully
display_name
string
required

The display name of the resource.

external_id
string
required

The external identifier of the resource.

type
string
required

The type of the resource.

id
string

Internal identifier of the resource.

created_at
string

Timestamp when the resource was created.

created_by
string | null

Identifier of the user who created the resource.

deleted_at
string | null

Timestamp when the resource was deleted, if applicable.

external_url
string

External URL where the resource can be accessed.

name
string | null

The name of the resource.

organization_id
string

Identifier of the organization that owns the resource.

status
string

Current status of the resource.

synced_at
string

Timestamp when the resource was last synced.

updated_at
string

Timestamp when the resource was last updated.

properties
object | null

Properties of the resource.