- General
- Endpoints
Retrieve Single Card
GET
/collection/{collection_id}/card/{card_id}
Card
Request
Path Params
collection_id
string
required
card_id
string
required
Query Params
show
string
optional
Example:
id,updated_at
hide
string
optional
Example:
created_at,updated_at
include
array[string]
optional
Allowed values:
time_tracking_totalresource_type_countresource_type_time
with
array[string]
optional
Allowed values:
activitiescollectionlabelsresourcesstagestatustimetime_trackingrelations
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/collection//card/' \
--header 'x-api-key;' \
--header 'x-api-env;'
Responses
🟢200Ok
application/json
Body
id
string <uuid>
read-onlyoptional
name
string
optional
NOTE
Example:
Painting Order 10199
description
string
optional
NOTE
Example:
Painting 3x Chair Lissabon Red
start_date
string <date> | null
optional
Default:
2020-01-02
start_time
string <time> | null
optional
Default:
15:00
end_date
string <date> | null
optional
Default:
2020-01-02
end_time
string <time> | null
optional
Default:
15:00
rank
string
read-onlyoptional
Default:
aaa
position
integer
read-onlyoptional
days_diff
integer
read-onlyoptional
days_active
integer
read-onlyoptional
locked
boolean
read-onlyoptional
time_tracking_running
boolean
read-onlyoptional
custom_fields
array[object (CustomField) {13}]
required
id
string <uuid>
read-onlyoptional
name
string
optional
Example:
Weight
type
enum<string>
optional
Allowed values:
textnumberdatecheckboxemaillinkphonelistselectaddressdrawingtextareausers
Default:
text
Example:
number
scope
enum<string>
optional
Allowed values:
collectioncard
priority
integer
optional
Example:
0
value
string | integer | boolean | array | number | object | null
optional
drawing_id
string <uuid>
optional
components
object (CustomFieldOptionsAddress)
optional
list
array [object {3}]
optional
selected
object
optional
options
optional
number
, select
or list
typescreated_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
date
string <date> | null
deprecated
Default:
2020-01-02
start
string <date> | null
deprecated
Default:
2020-01-02
end
string <date> | null
deprecated
Default:
2020-01-02
time
integer
deprecated
Example:
120
card_recurring_id
string <uuid> | null
optional
parent_card_id
string <uuid> | null
optional
collection_id
string <uuid>
required
status_id
string <uuid>
required
stage_id
string <uuid>
required
external_ref
string | null
read-onlyoptional
Example:
fb1033a2ed70
completed_at
string <date-time> | null
optional
created_at
string <date-time>
read-onlyrequired
Example:
2024-04-11T10:22:15Z
updated_at
string <date-time>
read-onlyrequired
Example:
2024-04-11T10:22:15Z
Example
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "Painting Order 10199",
"description": "Painting 3x Chair Lissabon Red",
"start_date": "2020-01-02",
"start_time": "15:00",
"end_date": "2020-01-02",
"end_time": "15:00",
"rank": "aaa",
"position": 0,
"days_diff": 0,
"days_active": 0,
"locked": true,
"time_tracking_running": true,
"custom_fields": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "Weight",
"type": "text",
"scope": "collection",
"priority": 0,
"value": "string",
"drawing_id": "19ba6f6f-3365-4d74-bdc5-b3df4072c0ab",
"components": {
"latitude": 52.3156048,
"longitude": 6.496432,
"country": "Netherlands",
"city": "Rijssen",
"postal_code": "7462TB",
"street1": "Hogepad 83",
"street2": "Second floor"
},
"list": [
{
"name": "string",
"value": "string",
"color": "transparent"
}
],
"selected": {
"name": "string",
"value": "string",
"color": ""
},
"options": {
"unit": "kg",
"align": "left",
"decimals": 2
},
"created_at": "2024-04-11T10:22:15Z",
"updated_at": "2024-04-11T10:22:15Z"
}
],
"date": "2020-01-02",
"start": "2020-01-02",
"end": "2020-01-02",
"time": 120,
"card_recurring_id": "106de719-5cc0-4af9-bc80-777744f7e20c",
"parent_card_id": "37909c19-1675-4aa9-a5ad-e2a7cefd2529",
"collection_id": "4bdef85c-3f50-4006-a713-2350da665f80",
"status_id": "4e949624-bc0f-439e-a9f2-25a23938812c",
"stage_id": "f38d2b9c-0a0a-4eea-91a8-e974413bb670",
"external_ref": "fb1033a2ed70",
"completed_at": "2019-08-24T14:15:22Z",
"created_at": "2024-04-11T10:22:15Z",
"updated_at": "2024-04-11T10:22:15Z"
}
🟠404Not Found
🟠401Not Logged In
Modified at 2025-04-22 11:37:34