CLI Reference
- Get Started
- Root Command
- App Commands
- Auth Commands
- Resource Commands
- Project Commands
- Recipe Commands
API Reference
- Get Started
- Apps
- Resources
- Recipes
- Projects
List resources of a specific type
Retrieve a list of resources filtered by type.
curl --request POST \
--url https://developer.tempestdx.com/api/v1/resources.list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"next": "<string>"
}'
{
"response_type": "<string>",
"resources": [
{
"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"
}
]
}
}
],
"next": "<string>"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
Pagination cursor for the next page of results
Response
The type of response.
List of resources for requested page
The display name of the resource.
The external identifier of the resource.
The type of the resource.
Internal identifier of the resource.
Timestamp when the resource was created.
Identifier of the user who created the resource.
Timestamp when the resource was deleted, if applicable.
External URL where the resource can be accessed.
The name of the resource.
Identifier of the organization that owns the resource.
Current status of the resource.
Timestamp when the resource was last synced.
Timestamp when the resource was last updated.
Properties of the resource.
The next page token for pagination.
Was this page helpful?
curl --request POST \
--url https://developer.tempestdx.com/api/v1/resources.list \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"next": "<string>"
}'
{
"response_type": "<string>",
"resources": [
{
"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"
}
]
}
}
],
"next": "<string>"
}