Overview
The TallerBrandeo API manages workshops and service centers that handle vehicle branding services for advertising campaigns. These workshops apply stickers, LED panels, and other branding materials to vehicles participating in campaigns.
The TallerBrandeo Object
Unique identifier for the branding workshop
Foreign key reference to the city where the workshop is located
Foreign key reference to the country where the workshop operates
Name of the branding workshop (max 50 characters)
Physical address of the workshop (max 100 characters)
Additional location reference or landmarks (max 150 characters)
Contact phone number of the workshop (max 15 characters)
Workshop status:
0 - Inactive
1 - Active
2 - Suspended
3 - Closed
Date when the workshop was registered (YYYY-MM-DD format)
Date when the workshop information was last updated (YYYY-MM-DD format)
Create Branding Workshop
curl -X POST https://api.restapi.com/taller-brandeo \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"id_ciudad": 1,
"id_pais": 1,
"nombre": "Auto Wrap Ecuador",
"direccion": "Av. 6 de Diciembre N45-123",
"referencia": "Frente al Centro Comercial Quicentro Norte",
"telefono": "+593987654321",
"estado": 1,
"fecha_creacion": "2026-03-09",
"fecha_modificacion": "2026-03-09"
}'
{
"id_taller": 1,
"id_ciudad": 1,
"id_pais": 1,
"nombre": "Auto Wrap Ecuador",
"direccion": "Av. 6 de Diciembre N45-123",
"referencia": "Frente al Centro Comercial Quicentro Norte",
"telefono": "+593987654321",
"estado": 1,
"fecha_creacion": "2026-03-09",
"fecha_modificacion": "2026-03-09"
}
City ID where the workshop is located
Country ID where the workshop operates
Workshop name (max 50 characters)
Physical address of the workshop (max 100 characters)
Location reference or nearby landmarks (max 150 characters)
Contact phone number (max 15 characters)
Workshop status (0: Inactive, 1: Active, 2: Suspended, 3: Closed)
Registration date in YYYY-MM-DD format
Last modification date in YYYY-MM-DD format
Get Branding Workshop
curl -X GET https://api.restapi.com/taller-brandeo/1 \
-H "Authorization: Bearer YOUR_API_KEY"
{
"id_taller": 1,
"id_ciudad": 1,
"id_pais": 1,
"nombre": "Auto Wrap Ecuador",
"direccion": "Av. 6 de Diciembre N45-123",
"referencia": "Frente al Centro Comercial Quicentro Norte",
"telefono": "+593987654321",
"estado": 1,
"fecha_creacion": "2026-03-09",
"fecha_modificacion": "2026-03-09",
"ciudad": {
"id_ciudad": 1,
"nombre": "Quito"
},
"pais": {
"id_pais": 1,
"nombre": "Ecuador"
}
}
List Branding Workshops
curl -X GET https://api.restapi.com/taller-brandeo?id_ciudad=1&estado=1&limit=50 \
-H "Authorization: Bearer YOUR_API_KEY"
{
"data": [
{
"id_taller": 1,
"id_ciudad": 1,
"id_pais": 1,
"nombre": "Auto Wrap Ecuador",
"direccion": "Av. 6 de Diciembre N45-123",
"referencia": "Frente al Centro Comercial Quicentro Norte",
"telefono": "+593987654321",
"estado": 1,
"fecha_creacion": "2026-03-09",
"fecha_modificacion": "2026-03-09"
},
{
"id_taller": 2,
"id_ciudad": 1,
"id_pais": 1,
"nombre": "Vinyl Graphics Pro",
"direccion": "Av. República del Salvador N34-567",
"referencia": "Sector La Carolina, junto al parque",
"telefono": "+593998765432",
"estado": 1,
"fecha_creacion": "2026-02-15",
"fecha_modificacion": "2026-02-15"
},
{
"id_taller": 3,
"id_ciudad": 1,
"id_pais": 1,
"nombre": "LED Panel Installers",
"direccion": "Calle Los Pinos E12-890",
"referencia": "A dos cuadras del Hospital Metropolitano",
"telefono": "+593987123456",
"estado": 1,
"fecha_creacion": "2026-01-20",
"fecha_modificacion": "2026-03-05"
}
],
"total": 3,
"page": 1,
"limit": 50
}
Filter workshops by city ID
Filter workshops by country ID
Filter workshops by status (0: Inactive, 1: Active, 2: Suspended, 3: Closed)
Search workshops by name (partial match)
Number of records to return per page
Page number for pagination
Update Branding Workshop
curl -X PUT https://api.restapi.com/taller-brandeo/1 \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"telefono": "+593999888777",
"direccion": "Av. 6 de Diciembre N45-125",
"fecha_modificacion": "2026-03-10"
}'
{
"id_taller": 1,
"id_ciudad": 1,
"id_pais": 1,
"nombre": "Auto Wrap Ecuador",
"direccion": "Av. 6 de Diciembre N45-125",
"referencia": "Frente al Centro Comercial Quicentro Norte",
"telefono": "+593999888777",
"estado": 1,
"fecha_creacion": "2026-03-09",
"fecha_modificacion": "2026-03-10"
}
Updated location reference
Updated contact phone number
Update timestamp in YYYY-MM-DD format
Delete Branding Workshop
curl -X DELETE https://api.restapi.com/taller-brandeo/1 \
-H "Authorization: Bearer YOUR_API_KEY"
{
"success": true,
"message": "Branding workshop deleted successfully",
"id_taller": 1
}
Get Workshops by City
Retrieve all active branding workshops in a specific city.
curl -X GET https://api.restapi.com/taller-brandeo/ciudad/1/active \
-H "Authorization: Bearer YOUR_API_KEY"
{
"id_ciudad": 1,
"nombre_ciudad": "Quito",
"talleres_activos": [
{
"id_taller": 1,
"nombre": "Auto Wrap Ecuador",
"direccion": "Av. 6 de Diciembre N45-125",
"telefono": "+593999888777"
},
{
"id_taller": 2,
"nombre": "Vinyl Graphics Pro",
"direccion": "Av. República del Salvador N34-567",
"telefono": "+593998765432"
},
{
"id_taller": 3,
"nombre": "LED Panel Installers",
"direccion": "Calle Los Pinos E12-890",
"telefono": "+593987123456"
}
],
"total": 3
}