โดเมน

หมายเหตุ
ระดับผู้เชี่ยวชาญ
ส่งคีย์ API เป็นโทเค็น Bearer ในส่วน Authorization header ของคำขอ รับคีย์ API ของคุณ.
รายการ

ปลายทาง API:

GET
https://chimera.market.pna.co.th/api/v1/domains

ตัวอย่างคำขอ:

curl --location --request GET 'https://chimera.market.pna.co.th/api/v1/domains' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
พารามิเตอร์
ประเภท
คำอธิบาย
search
ไม่จำเป็นห string
The search query.
search_by
ไม่จำเป็นห string
ค้นหาโดย. Possible values are: name for ชื่อ. Defaults to: name.
sort_by
ไม่จำเป็นห string
เรียงตาม. Possible values are: id for วันที่สร้าง, name for ชื่อ. Defaults to: id.
sort
ไม่จำเป็นห string
เรียงลำดับ. Possible values are: desc for จากมากไปน้อย, asc for จากน้อยไปมาก. Defaults to: desc.
per_page
ไม่จำเป็นห int
ผลลัพธ์ต่อหน้า. Possible values are: 10, 25, 50, 100. Defaults to: 10.
แสดง

ปลายทาง API:

GET
https://chimera.market.pna.co.th/api/v1/domains/{id}

ตัวอย่างคำขอ:

curl --location --request GET 'https://chimera.market.pna.co.th/api/v1/domains/{id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
เก็บ

ปลายทาง API:

POST
https://chimera.market.pna.co.th/api/v1/domains

ตัวอย่างคำขอ:

curl --location --request POST 'https://chimera.market.pna.co.th/api/v1/domains' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}' \
--data-urlencode 'name={name}'
พารามิเตอร์
ประเภท
คำอธิบาย
name
จำเป็น string
The domain name.
index_page
ไม่จำเป็นห string
The index page to redirect to.
not_found_page
ไม่จำเป็นห string
The 404 page to redirect to.
อัปเดต

ปลายทาง API:

PUT PATCH
https://chimera.market.pna.co.th/api/v1/domains/{id}

ตัวอย่างคำขอ:

curl --location --request PUT 'https://chimera.market.pna.co.th/api/v1/domains/{id}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}'
พารามิเตอร์
ประเภท
คำอธิบาย
index_page
ไม่จำเป็นห string
The index page to redirect to.
not_found_page
ไม่จำเป็นห string
The 404 page to redirect to.
ลบ

ปลายทาง API:

DELETE
https://chimera.market.pna.co.th/api/v1/domains/{id}

ตัวอย่างคำขอ:

curl --location --request DELETE 'https://chimera.market.pna.co.th/api/v1/domains/{id}' \
--header 'Authorization: Bearer {api_key}'