- Getting Started
- Version
- Auth
- User
- Kereta
- Pelanggan
- Gerbong
- Kursi
- Jadwal
- Pembelian Tiket
Create User
Developing
POST
/user
Maintainer:Muhammad Fadhil Kholaf
Request
Cookie Params
token
string
required
Body Params application/json
username
string
required
password
string
required
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 POST 'https://kereta.api.fadhilkholaf.my.id/user' \
--header 'Cookie: token=' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢201Created
application/json
Body
message
string
required
data
object
required
Example
{
"message": "string",
"data": {}
}
🟠400Bad Request
🟠401Unauthorized
🟠409Conflict
🔴500Server Error
Modified at 2025-03-16 18:06:29