API URL
https://elbistore.co.id/api
API Key (dapat ditemukan pada laman pengaturan akun )
Your API Key
API ID (dapat ditemukan pada laman pengaturan akun )
Your API ID
HTTP Method
POST
Response format
JSON
Example Code
Parameter | Type | Value | Wajib |
---|---|---|---|
api_id | int |
berisi API ID anda. | YA |
api_key | string |
berisi API KEY anda. | YA |
action | string |
order | YA |
service | int |
berisi kode layanan, cek disini. | YA |
target | string |
Target akun sosial media, dapat berupa link/username/lainnya. | YA |
quantity | int |
Jumlah pesanan | YA |
Example Response
Respon Sukses
{
"result": true,
"data": {
"id": "12345",
"price": 45000
},
"message": "Pesanan berhasil di buat."
}
[POST
] https://elbistore.co.id/api
Parameter | Type | Value | Wajib |
---|---|---|---|
api_id | int |
berisi API ID anda. | YA |
api_key | string |
berisi API KEY anda. | YA |
action | string |
status | YA |
id | string |
ID Pesanan. (Jika ingin mengecek lebih dari satu pesanan, pisahkan tiap ID Pesanan dengan koma, maksimal 50 ID Pesanan.) | YA |
Example Response
Respon Sukses
{
"result": true,
"data": [
{
"id": "12345",
"status": "processing",
"remain": 0,
"count": 0
}
],
"message": "Detail Pesanan berhasil didapatkan."
}
Respon Sukses (Massal)
{
"result": true,
"data": [
{
"id": "12345",
"status": "success",
"remain": 0,
"count": 0
},
{
"id": "12345",
"status": "error",
"remain": 0,
"count": 0
}
],
"message": "Detail Pesanan berhasil didapatkan."
}
[POST
] https://elbistore.co.id/api
Parameter | Type | Value | Wajib |
---|---|---|---|
api_id | int |
berisi API ID anda. | YA |
api_key | string |
berisi API KEY anda. | YA |
action | string |
services | YA |
filter_type | string |
|
TIDAK |
filter_value | string |
berisi category yang ingin diambil | TIDAK |
Example Response
Respon Sukses
{
"result": true,
"data": [
{
"id": "1",
"category": "nama kategori",
"name": "nama layanan",
"price": 2000,
"min": 100,
"max": 10000,
"description": "penjelasan layanan",
"type": "primary",
"refill": "1"
},
{
"id": "1",
"category": "nama kategori",
"name": "nama layanan",
"price": 5000,
"min": 100,
"max": 10000,
"description": "penjelasan layanan",
"type": "custom_comments",
"refill": "0"
},
{
"id": "1",
"category": "nama kategori",
"name": "nama layanan",
"price": 10000,
"min": 100,
"max": 10000,
"description": "penjelasan layanan",
"type": "custom_link",
"refill": "1"
}
],
"message": "Daftar layanan berhasil didapatkan."
}
[POST
] https://elbistore.co.id/api
Parameter | Type | Value | Wajib |
---|---|---|---|
api_id | int |
berisi API ID anda. | YA |
api_key | string |
berisi API KEY anda. | YA |
action | string |
refill | YA |
id | int |
ID Pesanan | YA |
Example Response
Respon Sukses
{
"result": true,
"data": {
"id_refill": "1"
},
"message": "Permintaan refill berhasil dibuat."
}
[POST
] https://elbistore.co.id/api
Parameter | Type | Value | Wajib |
---|---|---|---|
api_id | int |
berisi API ID anda. | YA |
api_key | string |
berisi API KEY anda. | YA |
action | string |
refill_status | YA |
id | int |
ID Refill | YA |
Example Response
Respon Sukses
{
"result": true,
"data": {
"id_refill": "1",
"status": "Processing"
},
"message": "Detail Refill berhasil didapatkan."
}