Projeler
GET https://rqrcode.com/api/projects/
curl --request GET \
--url 'https://rqrcode.com/api/projects/' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://rqrcode.com/api/projects/' \
--header 'Authorization: Bearer {api_key}' \
Parametreler | Detaylar | Açıklama |
---|---|---|
page | İsteğe bağlı Tamsayı | İstediğiniz sonuçları almak istediğiniz sayfa numarası. Varsayılan olarak 1 . |
results_per_page | İsteğe bağlı Tamsayı | Her sayfada kaç sonuç istersiniz. İzin verilen değerler: 10 , 25 , 50 , 100 , 250 , 500 , 1000 . Varsayılan olarak 25 . |
{ "data": [ { "id": 1, "name": "Development", "color": "#0e23cc", "last_datetime": null, "datetime": "2025-05-18 19:40:52" }, ], "meta": { "page": 1, "results_per_page": 25, "total": 1, "total_pages": 1 }, "links": { "first": "https://rqrcode.com/api/projects?&page=1", "last": "https://rqrcode.com/api/projects?&page=1", "next": null, "prev": null, "self": "https://rqrcode.com/api/projects?&page=1" } }
GET https://rqrcode.com/api/projects/{project_id}
curl --request GET \
--url 'https://rqrcode.com/api/projects/{project_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://rqrcode.com/api/projects/{project_id}' \
--header 'Authorization: Bearer {api_key}' \
{ "data": { "id": 1, "name": "Development", "color": "#0e23cc", "last_datetime": null, "datetime": "2025-05-18 19:40:52" } }
POST https://rqrcode.com/api/projects
Parametreler | Detaylar | Açıklama |
---|---|---|
name | Gerekli Dize | - |
color | İsteğe bağlı Dize | - |
curl --request POST \
--url 'https://rqrcode.com/api/projects' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Production' \
--form 'color=#ffffff' \
--url 'https://rqrcode.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://rqrcode.com/api/projects/{project_id}
Parametreler | Detaylar | Açıklama |
---|---|---|
name | İsteğe bağlı Dize | - |
color | İsteğe bağlı Dize | - |
curl --request POST \
--url 'https://rqrcode.com/api/projects/{project_id}' \
--header 'Authorization: Bearer {api_key}' \
--header 'Content-Type: multipart/form-data' \
--form 'name=Production' \
--form 'color=#000000' \
--url 'https://rqrcode.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://rqrcode.com/api/projects/{project_id}
curl --request DELETE \
--url 'https://rqrcode.com/api/projects/{project_id}' \
--header 'Authorization: Bearer {api_key}' \
--url 'https://rqrcode.com/api/projects/{project_id}' \
--header 'Authorization: Bearer {api_key}' \