প্রকল্প
GET https://lifterbrand.com/api/projects/
curl --request GET \
--url 'https://lifterbrand.com/api/projects/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://lifterbrand.com/api/projects/' \
--header 'Authorization: Bearer {api_key}' \
প্যারামিটার | বিবরণ | বিবরণ |
---|---|---|
page | ঐচ্ছিক পূর্ণসংখ্যা | পৃষ্ঠা নম্বর যেটা আপনি ফলাফল চান। ডিফল্ট হিসাবে ১ প্রস্তুত করা হয়েছে। |
results_per_page | ঐচ্ছিক পূর্ণসংখ্যা | প্রতি পৃষ্ঠায় আপনি কতগুলি ফলাফল চান। অনুমোদিত মানগুলি হল: 10 , 25 , 50 , 100 , 250 , 500 । ডিফল্ট হিসাবে 25 প্রস্তুত করা হয়েছে। |
{
"data": [
{
"id": 1,
"name": "Development",
"color": "#0e23cc",
"last_datetime": "2021-03-14 21:22:37",
"datetime": "2021-02-04 17:51:07"
},
],
"meta": {
"page": 1,
"results_per_page": 25,
"total": 1,
"total_pages": 1
},
"links": {
"first": "https://lifterbrand.com/api/projects?&page=1",
"last": "https://lifterbrand.com/api/projects?&page=1",
"next": null,
"prev": null,
"self": "https://lifterbrand.com/api/projects?&page=1"
}
}
GET https://lifterbrand.com/api/projects/{project_id}
curl --request GET \
--url 'https://lifterbrand.com/api/projects/{project_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://lifterbrand.com/api/projects/{project_id}' \
--header 'Authorization: Bearer {api_key}' \
{
"data": {
"id": 1,
"name": "Development",
"color": "#0e23cc",
"last_datetime": "2021-03-14 21:22:37",
"datetime": "2021-02-04 17:51:07"
}
}
POST https://lifterbrand.com/api/projects
প্যারামিটার | বিবরণ | বিবরণ |
---|---|---|
name | প্রয়োজনীয় স্ট্রিং | - |
color | ঐচ্ছিক স্ট্রিং | - |
curl --request POST \
--url 'https://lifterbrand.com/api/projects' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Production' \
--form 'color=#ffffff' \
--url 'https://lifterbrand.com/api/projects' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Production' \
--form 'color=#ffffff' \
{
"data": {
"id": 1
}
}
POST https://lifterbrand.com/api/projects/{project_id}
প্যারামিটার | বিবরণ | বিবরণ |
---|---|---|
name | ঐচ্ছিক স্ট্রিং | - |
color | ঐচ্ছিক স্ট্রিং | - |
curl --request POST \
--url 'https://lifterbrand.com/api/projects/{project_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Production' \
--form 'color=#000000' \
--url 'https://lifterbrand.com/api/projects/{project_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Production' \
--form 'color=#000000' \
{
"data": {
"id": 1
}
}
DELETE https://lifterbrand.com/api/projects/{project_id}
curl --request DELETE \
--url 'https://lifterbrand.com/api/projects/{project_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://lifterbrand.com/api/projects/{project_id}' \
--header 'Authorization: Bearer {api_key}' \