- General
- Endpoints
Update Custom Field By Name
PUT
/collection/{collection_id}/custom_fields/{name}
Collection
Request
Path Params
collection_id
string
required
Example:
83271353-458f-4ce1-8c15-ce9a3a9a3ad9
name
string
required
Header Params
x-api-key
string
required
Default:
{{api_key}}
x-api-env
string
required
Default:
{{api_env}}
Body Params application/json
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
latitude
number
optional
Example:
52.3156048
longitude
number
optional
Example:
6.496432
country
string
optional
Example:
Netherlands
city
string
optional
Example:
Rijssen
postal_code
string
optional
Example:
7462TB
street1
string
optional
Example:
Hogepad 83
street2
string
optional
Example:
Second floor
list
array [object {3}]
optional
name
string
required
value
string
required
color
enum<string>
required
Allowed values:
bluebrownbubblegumcharcoalgreengreyindigolavendernavyoliveorangepinkpurpleraspberryredrubyskybluetealtransparentyellow
Default:
transparent
selected
object
optional
name
string
required
value
string
required
color
enum<string>
required
Allowed values:
bluebrownbubblegumcharcoalgreengreyindigolavendernavyoliveorangepinkpurpleraspberryredrubyskybluetealtransparentyellow
options
optional
number
, select
or list
typesAny of
unit
string
optional
Example:
kg
align
enum<string>
optional
Allowed values:
leftright
Example:
right
decimals
integer
optional
Example:
2
Example
{
"name": "card 2",
"cards": [
{
"id": "cc2b196d-c651-4e27-be40-8ae7e1c66a72",
"custom_fields": [
{
"board_id": "b94a4f68-bcb2-4bcb-b1e0-dcc59d87080f",
"name": "bestaat niet",
"type": "text",
"scope": "card",
"priority": 5,
"value": "rare keuze"
},
{
"id": "4f96ed6d-b863-4267-bc2c-618bd52a59fd",
"board_id": "b94a4f68-bcb2-4bcb-b1e0-dcc59d87080f",
"name": "test 1",
"type": "text",
"scope": "card",
"priority": 4,
"value": "hehe"
}
]
}
]
}
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 PUT 'https://api.vplan.com/v1/collection/83271353-458f-4ce1-8c15-ce9a3a9a3ad9/custom_fields/' \
--header 'x-api-key;' \
--header 'x-api-env;' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "card 2",
"cards": [
{
"id": "cc2b196d-c651-4e27-be40-8ae7e1c66a72",
"custom_fields": [
{
"board_id": "b94a4f68-bcb2-4bcb-b1e0-dcc59d87080f",
"name": "bestaat niet",
"type": "text",
"scope": "card",
"priority": 5,
"value": "rare keuze"
},
{
"id": "4f96ed6d-b863-4267-bc2c-618bd52a59fd",
"board_id": "b94a4f68-bcb2-4bcb-b1e0-dcc59d87080f",
"name": "test 1",
"type": "text",
"scope": "card",
"priority": 4,
"value": "hehe"
}
]
}
]
}'
Responses
🟢204No Content
text/plain
Body
null
optional
🟠422Unprocessable Content
🟠404Not Found
🟠401Not Logged In
Modified at 2024-10-14 12:07:08