NAV
bash javascript

Info

Welcome to the generated API reference. Get Postman Collection

User

api/login

Example request:

curl -X POST "http://laravel.local/api/login" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/login");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "POST",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response (500):

{
    "message": "Server Error"
}

HTTP Request

POST api/login

api/auth/sign-out

Example request:

curl -X POST "http://laravel.local/api/auth/sign-out" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/auth/sign-out");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "POST",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response (422):

{
    "message": "The given data was invalid.",
    "errors": {
        "token": [
            "Bidang isian token wajib diisi."
        ]
    }
}

HTTP Request

POST api/auth/sign-out

api/test

Example request:

curl -X GET -G "http://laravel.local/api/test" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/test");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/test

POST api/test

PUT api/test

PATCH api/test

DELETE api/test

OPTIONS api/test

general

api/auth/sign-up

Example request:

curl -X POST "http://laravel.local/api/auth/sign-up" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/auth/sign-up");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "POST",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response (200):

{
    "meta": {
        "error": "1",
        "code": "200",
        "result": "success",
        "message": "get data success."
    },
    "data": {
        "error_messages": {
            "first_name": [
                "Bidang isian Nama Depan wajib diisi."
            ],
            "username": [
                "Bidang isian Username wajib diisi."
            ],
            "email": [
                "Bidang isian Email wajib diisi."
            ],
            "password": [
                "Bidang isian Password wajib diisi."
            ],
            "role": [
                "Bidang isian Role wajib diisi."
            ],
            "gender": [
                "Bidang isian Gender wajib diisi."
            ],
            "date_of_birth": [
                "Bidang isian Tanggal Lahir wajib diisi."
            ],
            "mobile_phone_number": [
                "Bidang isian Nomor Mobile Phone wajib diisi."
            ],
            "permission_code": [
                "Bidang isian Kode Izin wajib diisi."
            ]
        }
    }
}

HTTP Request

POST api/auth/sign-up

api/member-page/auth/change-password

Example request:

curl -X GET -G "http://laravel.local/api/member-page/auth/change-password" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/auth/change-password");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/auth/change-password

POST api/member-page/auth/change-password

PUT api/member-page/auth/change-password

PATCH api/member-page/auth/change-password

DELETE api/member-page/auth/change-password

OPTIONS api/member-page/auth/change-password

api/member-page/auth/change-password-with-old-password

Example request:

curl -X GET -G "http://laravel.local/api/member-page/auth/change-password-with-old-password" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/auth/change-password-with-old-password");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/auth/change-password-with-old-password

POST api/member-page/auth/change-password-with-old-password

PUT api/member-page/auth/change-password-with-old-password

PATCH api/member-page/auth/change-password-with-old-password

DELETE api/member-page/auth/change-password-with-old-password

OPTIONS api/member-page/auth/change-password-with-old-password

api/member-page/auth/change-password-request

Example request:

curl -X GET -G "http://laravel.local/api/member-page/auth/change-password-request" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/auth/change-password-request");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/auth/change-password-request

POST api/member-page/auth/change-password-request

PUT api/member-page/auth/change-password-request

PATCH api/member-page/auth/change-password-request

DELETE api/member-page/auth/change-password-request

OPTIONS api/member-page/auth/change-password-request

api/member-page/auth/change-password-verify

Example request:

curl -X GET -G "http://laravel.local/api/member-page/auth/change-password-verify" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/auth/change-password-verify");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/auth/change-password-verify

POST api/member-page/auth/change-password-verify

PUT api/member-page/auth/change-password-verify

PATCH api/member-page/auth/change-password-verify

DELETE api/member-page/auth/change-password-verify

OPTIONS api/member-page/auth/change-password-verify

api/member-page/items

Example request:

curl -X GET -G "http://laravel.local/api/member-page/items" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/items");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/items

POST api/member-page/items

PUT api/member-page/items

PATCH api/member-page/items

DELETE api/member-page/items

OPTIONS api/member-page/items

api/member-page/item/post

Example request:

curl -X GET -G "http://laravel.local/api/member-page/item/post" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/item/post");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/item/post

POST api/member-page/item/post

PUT api/member-page/item/post

PATCH api/member-page/item/post

DELETE api/member-page/item/post

OPTIONS api/member-page/item/post

api/member-page/item/carts

Example request:

curl -X GET -G "http://laravel.local/api/member-page/item/carts" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/item/carts");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/item/carts

POST api/member-page/item/carts

PUT api/member-page/item/carts

PATCH api/member-page/item/carts

DELETE api/member-page/item/carts

OPTIONS api/member-page/item/carts

api/member-page/item/cart/create

Example request:

curl -X GET -G "http://laravel.local/api/member-page/item/cart/create" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/item/cart/create");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/item/cart/create

POST api/member-page/item/cart/create

PUT api/member-page/item/cart/create

PATCH api/member-page/item/cart/create

DELETE api/member-page/item/cart/create

OPTIONS api/member-page/item/cart/create

api/member-page/item/cart/update

Example request:

curl -X GET -G "http://laravel.local/api/member-page/item/cart/update" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/item/cart/update");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/item/cart/update

POST api/member-page/item/cart/update

PUT api/member-page/item/cart/update

PATCH api/member-page/item/cart/update

DELETE api/member-page/item/cart/update

OPTIONS api/member-page/item/cart/update

api/member-page/item/cart/delete

Example request:

curl -X GET -G "http://laravel.local/api/member-page/item/cart/delete" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/item/cart/delete");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/item/cart/delete

POST api/member-page/item/cart/delete

PUT api/member-page/item/cart/delete

PATCH api/member-page/item/cart/delete

DELETE api/member-page/item/cart/delete

OPTIONS api/member-page/item/cart/delete

api/member-page/item/favorites

Example request:

curl -X GET -G "http://laravel.local/api/member-page/item/favorites" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/item/favorites");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/item/favorites

POST api/member-page/item/favorites

PUT api/member-page/item/favorites

PATCH api/member-page/item/favorites

DELETE api/member-page/item/favorites

OPTIONS api/member-page/item/favorites

api/member-page/item/favorite/create

Example request:

curl -X GET -G "http://laravel.local/api/member-page/item/favorite/create" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/item/favorite/create");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/item/favorite/create

POST api/member-page/item/favorite/create

PUT api/member-page/item/favorite/create

PATCH api/member-page/item/favorite/create

DELETE api/member-page/item/favorite/create

OPTIONS api/member-page/item/favorite/create

api/member-page/item/favorite/delete

Example request:

curl -X GET -G "http://laravel.local/api/member-page/item/favorite/delete" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/item/favorite/delete");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/item/favorite/delete

POST api/member-page/item/favorite/delete

PUT api/member-page/item/favorite/delete

PATCH api/member-page/item/favorite/delete

DELETE api/member-page/item/favorite/delete

OPTIONS api/member-page/item/favorite/delete

api/member-page/reservations

Example request:

curl -X GET -G "http://laravel.local/api/member-page/reservations" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/reservations");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/reservations

POST api/member-page/reservations

PUT api/member-page/reservations

PATCH api/member-page/reservations

DELETE api/member-page/reservations

OPTIONS api/member-page/reservations

api/member-page/reservation/create

Example request:

curl -X GET -G "http://laravel.local/api/member-page/reservation/create" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/reservation/create");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/reservation/create

POST api/member-page/reservation/create

PUT api/member-page/reservation/create

PATCH api/member-page/reservation/create

DELETE api/member-page/reservation/create

OPTIONS api/member-page/reservation/create

api/member-page/reservation/delete

Example request:

curl -X GET -G "http://laravel.local/api/member-page/reservation/delete" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/reservation/delete");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/reservation/delete

POST api/member-page/reservation/delete

PUT api/member-page/reservation/delete

PATCH api/member-page/reservation/delete

DELETE api/member-page/reservation/delete

OPTIONS api/member-page/reservation/delete

api/member-page/reservation/post

Example request:

curl -X GET -G "http://laravel.local/api/member-page/reservation/post" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/reservation/post");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/reservation/post

POST api/member-page/reservation/post

PUT api/member-page/reservation/post

PATCH api/member-page/reservation/post

DELETE api/member-page/reservation/post

OPTIONS api/member-page/reservation/post

api/member-page/stores

Example request:

curl -X GET -G "http://laravel.local/api/member-page/stores" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/stores");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/stores

POST api/member-page/stores

PUT api/member-page/stores

PATCH api/member-page/stores

DELETE api/member-page/stores

OPTIONS api/member-page/stores

api/member-page/store/post

Example request:

curl -X GET -G "http://laravel.local/api/member-page/store/post" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/store/post");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/store/post

POST api/member-page/store/post

PUT api/member-page/store/post

PATCH api/member-page/store/post

DELETE api/member-page/store/post

OPTIONS api/member-page/store/post

api/member-page/categories

Example request:

curl -X GET -G "http://laravel.local/api/member-page/categories" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/categories");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/categories

POST api/member-page/categories

PUT api/member-page/categories

PATCH api/member-page/categories

DELETE api/member-page/categories

OPTIONS api/member-page/categories

api/member-page/category/post

Example request:

curl -X GET -G "http://laravel.local/api/member-page/category/post" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/category/post");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/category/post

POST api/member-page/category/post

PUT api/member-page/category/post

PATCH api/member-page/category/post

DELETE api/member-page/category/post

OPTIONS api/member-page/category/post

api/member-page/kosts

Example request:

curl -X GET -G "http://laravel.local/api/member-page/kosts" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/kosts");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/kosts

POST api/member-page/kosts

PUT api/member-page/kosts

PATCH api/member-page/kosts

DELETE api/member-page/kosts

OPTIONS api/member-page/kosts

api/member-page/kost/post

Example request:

curl -X GET -G "http://laravel.local/api/member-page/kost/post" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/kost/post");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/kost/post

POST api/member-page/kost/post

PUT api/member-page/kost/post

PATCH api/member-page/kost/post

DELETE api/member-page/kost/post

OPTIONS api/member-page/kost/post

api/member-page/user/identity

Example request:

curl -X GET -G "http://laravel.local/api/member-page/user/identity" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/user/identity");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/user/identity

POST api/member-page/user/identity

PUT api/member-page/user/identity

PATCH api/member-page/user/identity

DELETE api/member-page/user/identity

OPTIONS api/member-page/user/identity

api/member-page/user/update

Example request:

curl -X GET -G "http://laravel.local/api/member-page/user/update" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/user/update");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/user/update

POST api/member-page/user/update

PUT api/member-page/user/update

PATCH api/member-page/user/update

DELETE api/member-page/user/update

OPTIONS api/member-page/user/update

api/member-page/indikos/user/identity

Example request:

curl -X GET -G "http://laravel.local/api/member-page/indikos/user/identity" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/indikos/user/identity");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/indikos/user/identity

POST api/member-page/indikos/user/identity

PUT api/member-page/indikos/user/identity

PATCH api/member-page/indikos/user/identity

DELETE api/member-page/indikos/user/identity

OPTIONS api/member-page/indikos/user/identity

api/member-page/indikos/user/update

Example request:

curl -X GET -G "http://laravel.local/api/member-page/indikos/user/update" \
    -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY"
const url = new URL("http://laravel.local/api/member-page/indikos/user/update");

let headers = {
    "Authorization": "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjEsImlzcyI6Imh0dHA6Ly9sYXJhdmVsLmxvY2FsL2FwaS9sb2dpbiIsImlhdCI6MTU2MzM3ODc5NSwiZXhwIjoxNTk0OTE0Nzk1LCJuYmYiOjE1NjMzNzg3OTUsImp0aSI6ImNQc2ppbmRMVURyWVhOZHkifQ.tI5PyLKjcqUsvVfCuxRHrSs3WKbQuvfrDFQZ507WdKY",
    "Accept": "application/json",
    "Content-Type": "application/json",
}

fetch(url, {
    method: "GET",
    headers: headers,
})
    .then(response => response.json())
    .then(json => console.log(json));

Example response:

null

HTTP Request

GET api/member-page/indikos/user/update

POST api/member-page/indikos/user/update

PUT api/member-page/indikos/user/update

PATCH api/member-page/indikos/user/update

DELETE api/member-page/indikos/user/update

OPTIONS api/member-page/indikos/user/update