Show brand

Request

Method: GET
Route: api/brand/show/{id}
Example: api/brand/show/1
Route Parameter Pattern Requirement
id * Required
Request Headers
host: localhost:49527
user-agent: Symfony
accept: application/json
accept-language: en-us,en;q=0.5
accept-charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
content-length: 2
content-type: application/json

Response

200 JSON
Response Headers
cache-control: no-cache, private
date: Tue, 17 May 2022 08:25:51 GMT
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 59
{
    "data": {
        "id": 1,
        "name": "Patagonia",
        "corner_logo": "https:\/\/via.placeholder.com\/640x480.png\/0077ee?text=alias"
    }
}

Time: 0.29

insert into `brands` (`name`, `updated_at`, `created_at`) values (?, ?, ?)
Bindings
0: Patagonia
1: 2022-05-17 08:25:51
2: 2022-05-17 08:25:51

Time: 0.28

update `brands` set `corner_logo` = ?, `brands`.`updated_at` = ? where `id` = ?
Bindings
0: https://via.placeholder.com/640x480.png/0077ee?text=alias
1: 2022-05-17 08:25:51
2: 1

Time: 0.42

select * from `brands` where `brands`.`id` = ? limit 1
Bindings
0: 1

Request

Method: GET
Route: api/brand/show/{id}
Example: api/brand/show/1
Route Parameter Pattern Requirement
id * Required
Request Headers
host: localhost:49527
user-agent: Symfony
accept: application/json
accept-language: en-us,en;q=0.5
accept-charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
content-length: 2
content-type: application/json