উপাত্ত
GET https://lifterbrand.com/api/data/
curl --request GET \
--url 'https://lifterbrand.com/api/data/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://lifterbrand.com/api/data/' \
--header 'Authorization: Bearer {api_key}' \
প্যারামিটার | বিবরণ | বিবরণ |
---|---|---|
page | ঐচ্ছিক পূর্ণসংখ্যা | পৃষ্ঠা নম্বর যেটা আপনি ফলাফল চান। ডিফল্ট হিসাবে ১ প্রস্তুত করা হয়েছে। |
results_per_page | ঐচ্ছিক পূর্ণসংখ্যা | প্রতি পৃষ্ঠায় আপনি কতগুলি ফলাফল চান। অনুমোদিত মানগুলি হল: 10 , 25 , 50 , 100 , 250 , 500 । ডিফল্ট হিসাবে 25 প্রস্তুত করা হয়েছে। |
{
"data": [
{
"id": 1,
"biolink_block_id": 1,
"link_id": 1,
"project_id": 1,
"type": "mail",
"data": {
"email": "email@example.com",
"name": "John doe"
},
"datetime": "2021-09-17 20:56:23"
},
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://lifterbrand.com/api/data?&page=1",
"last": "https://lifterbrand.com/api/data?&page=1",
"next": null,
"prev": null,
"self": "https://lifterbrand.com/api/data?&page=1"
}
}
GET https://lifterbrand.com/api/data/{datum_id}
curl --request GET \
--url 'https://lifterbrand.com/api/data/{datum_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://lifterbrand.com/api/data/{datum_id}' \
--header 'Authorization: Bearer {api_key}' \
{
"data": {
"id": 1,
"biolink_block_id": 1,
"link_id": 1,
"project_id": 1,
"type": "mail",
"data": {
"email": "email@example.com",
"name": "John doe"
},
"datetime": "2021-09-17 20:56:23"
}
}
DELETE https://lifterbrand.com/api/data/{datum_id}
curl --request DELETE \
--url 'https://lifterbrand.com/api/data/{datum_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://lifterbrand.com/api/data/{datum_id}' \
--header 'Authorization: Bearer {api_key}' \