Update
PATCH
/note/{id}
Request
Authorization
Add the parameter
Authorization
to Headers,whose value is to concatenate the Token after the Bearer.Example:
Authorization: Bearer ********************
Path Params
id
integer
required
Header Params
Accept
string
optional
Default:
application/json
Body Params application/json
date
string <date-time>
required
description
string
required
<= 255 characters
writer
string | null
optional
<= 65535 characters
customer_id
integer <uint32> | null
required
customer
optional
Any of
archived_at
string <date-time> | null
required
user_id
integer <uint32>
required
user
object
User
name
string
required
<= 255 characters
Examples:
Casey DachMakayla BashirianMiracle Langworth
email
string
required
<= 255 characters
password
string
write-onlyrequired
<= 255 characters
company_id
integer <uint32>
required
Example
{
"date": "2019-08-24T14:15:22Z",
"description": "string",
"writer": "string",
"customer_id": 0,
"archived_at": "2019-08-24T14:15:22Z"
}
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 PATCH 'https://api.cirqll.nl/api/note/' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
"date": "2019-08-24T14:15:22Z",
"description": "string",
"writer": "string",
"customer_id": 0,
"archived_at": "2019-08-24T14:15:22Z"
}'
Responses
🟢200Success
application/json
Body
id
integer <uint32>
read-onlyrequired
>= 1<= 4294967296
Example:
1
date
string <date-time>
required
description
string
required
<= 255 characters
writer
string | null
optional
<= 65535 characters
customer_id
integer <uint32> | null
required
customer
optional
Any of
id
integer <uint32>
read-onlyrequired
>= 1<= 4294967296
Example:
1
name
string
required
next_contact
string <date-time>
required
email
string <email>
required
<= 255 characters
Example:
cleora42@gmail.com
phone
string
required
<= 255 characters
Example:
1-848-429-9425
show_on_map
boolean
required
Default:
true
coc
string <char>
optional
<= 8 characters
description
string
optional
user_id
integer <uint32>
required
user
object
User
address_id
integer <uint32>
required
address
object
Address
created_at
string <date-time>
read-onlyrequired
Example:
2024-05-18 13:38:35
updated_at
string <date-time>
read-onlyrequired
Example:
2024-05-18 13:38:35
archived_at
string <date-time> | null
required
created_at
string <date-time>
read-onlyrequired
Example:
2024-05-18 13:38:35
updated_at
string <date-time>
read-onlyrequired
Example:
2024-05-18 13:38:35
user_id
integer <uint32>
required
user
object
User
Example
{
"id": 1,
"date": "2019-08-24T14:15:22Z",
"description": "string",
"writer": "string",
"customer_id": 0,
"customer": {
"name": "string",
"next_contact": "2019-08-24T14:15:22Z",
"email": "cleora42@gmail.com",
"phone": "1-848-429-9425",
"show_on_map": true,
"coc": "string",
"description": "string",
"user_id": 0,
"user": {
"name": "Casey Dach",
"email": "string",
"created_at": "2024-05-18 13:38:35",
"updated_at": "2024-05-18 13:38:35",
"company_id": 0,
"company": {
"name": "string",
"phone": "1-310-793-5469",
"coc": "string",
"financial_goal": 0,
"address_id": 0,
"address": {
"street": "Georgianna Loop",
"house_number": 12,
"addition": "A",
"zipcode": "45668",
"city": "Lake Quentinmouth",
"province": "DR",
"country": "NL",
"extra_address_line_one": "string",
"extra_address_line_two": "string",
"lat": 0,
"lon": 0,
"created_at": "2024-05-18 13:38:35",
"updated_at": "2024-05-18 13:38:35"
},
"created_at": "2024-05-18 13:38:35",
"updated_at": "2024-05-18 13:38:35"
}
},
"address_id": 0,
"address": {
"street": "Georgianna Loop",
"house_number": 12,
"addition": "A",
"zipcode": "45668",
"city": "Lake Quentinmouth",
"province": "DR",
"country": "NL",
"extra_address_line_one": "string",
"extra_address_line_two": "string",
"lat": 0,
"lon": 0,
"created_at": "2024-05-18 13:38:35",
"updated_at": "2024-05-18 13:38:35"
},
"created_at": "2024-05-18 13:38:35",
"updated_at": "2024-05-18 13:38:35"
},
"archived_at": "2019-08-24T14:15:22Z",
"created_at": "2024-05-18 13:38:35",
"updated_at": "2024-05-18 13:38:35"
}
🟠404Record Not Found
🟠401Not Logged In
🔴500Server Error
Modified at 2025-05-06 02:34:32