- General
- Endpoints
Retrieve Single Activity
GET
/activity/{activity_id}
Activity
Request
Path Params
activity_id
string
required
Example:
497f6eca-6276-4993-bfeb-53cbbbba6f08
Query Params
with
string
optional
show
string
optional
hide
string
optional
Header Params
x-api-key
string
required
Default:
{{api_key}}
x-api-env
string
required
Default:
{{api_env}}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.vplan.com/v1/activity/497f6eca-6276-4993-bfeb-53cbbbba6f08?show=&hide=' \
--header 'x-api-key;' \
--header 'x-api-env;'
Responses
🟢200Ok
application/json
Body
id
string <uuid>
read-onlyoptional
description
string
optional
code
string
optional
item_id
string <uuid>
optional
resource_type
enum<string>
optional
Allowed values:
resourcemachinecell
Default:
resource
default_duration
integer
optional
day_max_duration
integer
optional
billable
boolean
optional
hourly_rate
integer
optional
position
integer
optional
time
integer
optional
time_remaining
integer
optional
time_original
integer
optional
external_ref
string | null
read-onlyoptional
Example:
fb1033a2ed70
created_at
string <date-time>
read-onlyoptional
Example:
2024-04-11T10:22:15Z
updated_at
string <date-time>
read-onlyoptional
Example:
2024-04-11T10:22:15Z
archived_at
string <date-time>
read-onlyoptional
Example:
2021-07-06T11:24:35Z
Example
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"description": "string",
"code": "string",
"item_id": "4d8cd62e-a579-4dae-af8c-3172f96f8f7c",
"resource_type": "resource",
"default_duration": 0,
"day_max_duration": 0,
"billable": true,
"hourly_rate": 0,
"position": 0,
"time": 0,
"time_remaining": 0,
"time_original": 0,
"external_ref": "fb1033a2ed70",
"created_at": "2024-04-11T10:22:15Z",
"updated_at": "2024-04-11T10:22:15Z",
"archived_at": "2021-07-06T11:24:35Z"
}
🟠404Not Found
🟠401Not Logged In
Modified at 2024-10-04 09:04:55