- General
- Endpoints
Create New Item
POST
/item
Item
Request
Query Params
show
string
optional
Example:
id,updated_at
hide
string
optional
Example:
created_at,updated_at
Header Params
x-api-key
string
required
Default:
{{api_key}}
x-api-env
string
required
Default:
{{api_env}}
Body Params application/json
description
string
optional
<= 150 characters
code
string
optional
<= 50 characters
stockmanagement
boolean
optional
unit
string | null
optional
note
string | null
optional
location
string | null
optional
Example
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 POST 'https://api.vplan.com/v1/item' \
--header 'x-api-key;' \
--header 'x-api-env;' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢201Created
application/json
Body
id
string <uuid>
read-onlyoptional
description
string
optional
<= 150 characters
code
string
optional
<= 50 characters
external_ref
string | null
read-onlyoptional
Example:
fb1033a2ed70
stockmanagement
boolean
optional
unit
string | null
optional
note
string | null
optional
location
string | null
optional
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
Example
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"description": "string",
"code": "string",
"external_ref": "fb1033a2ed70",
"stockmanagement": true,
"unit": "string",
"note": "string",
"location": "string",
"created_at": "2024-04-11T10:22:15Z",
"updated_at": "2024-04-11T10:22:15Z"
}
🟠412412
🟠422Unprocessable Content
🟠401Not Logged In
Modified at 2024-10-14 12:07:08