- Getting Started
- Version
- Auth
- User
- Kereta
- Pelanggan
- Gerbong
- Kursi
- Jadwal
- Pembelian Tiket
Update User
Developing
PATCH
/user/{id}
Maintainer:Muhammad Fadhil Kholaf
Request
Path Params
id
string
required
Cookie Params
token
string
required
Body Params application/json
username
string
optional
password
string
optional
role
enum<string>
optional
Allowed values:
pelangganpetugas
Example
{
"username": "string",
"password": "string",
"role": "pelanggan"
}
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://kereta.api.fadhilkholaf.my.id/user/' \
--header 'Cookie: token=' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200Success
application/json
Body
message
string
required
data
object (User)
required
id
string
required
username
string
required
password
string
required
role
enum<string>
required
Allowed values:
pelangganpetugas
createdAt
string
required
updatedAt
string
required
Example
{
"message": "string",
"data": {
"id": "string",
"username": "string",
"password": "string",
"role": "pelanggan",
"createdAt": "string",
"updatedAt": "string"
}
}
🔴500Server Error
🟠401Unauthorized
🟠404Not Found
Modified at 2025-03-16 18:05:54