プロジェクト
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}' \
パラメータ | 詳細 | 説明 |
---|---|---|
page | オプション 整数 | 結果を取得したいページ番号。デフォルトは1 です。 |
results_per_page | オプション 整数 | 1ページあたりの結果の数を指定してください。許可される値は10 , 25 , 50 , 100 , 250 , 500 , 1000 です。デフォルトは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://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": "2021-03-14 21:22:37",
"datetime": "2021-02-04 17:51:07"
}
}
POST https://rqrcode.com/api/projects
パラメータ | 詳細 | 説明 |
---|---|---|
name | 必要です 文字列を | - |
color | オプション 文字列を | - |
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}
パラメータ | 詳細 | 説明 |
---|---|---|
name | オプション 文字列を | - |
color | オプション 文字列を | - |
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}' \