1 | 21:50:01.422 | | info | yii\db\Connection::open | Opening DB connection: pgsql:host=139.82.9.37;port=5432;dbname=zoom_audit_db |
2 | 21:50:01.454 | | info | yii\db\Command::query | SELECT
d.nspname AS table_schema,
c.relname AS table_name,
a.attname AS column_name,
COALESCE(td.typname, tb.typname, t.typname) AS data_type,
COALESCE(td.typtype, tb.typtype, t.typtype) AS type_type,
(SELECT nspname FROM pg_namespace WHERE oid = COALESCE(td.typnamespace, tb.typnamespace, t.typnamespace)) AS type_scheme,
a.attlen AS character_maximum_length,
pg_catalog.col_description(c.oid, a.attnum) AS column_comment,
a.atttypmod AS modifier,
a.attnotnull = false AS is_nullable,
CAST(pg_get_expr(ad.adbin, ad.adrelid) AS varchar) AS column_default,
coalesce(pg_get_expr(ad.adbin, ad.adrelid) ~ 'nextval',false) OR attidentity != '' AS is_autoinc,
pg_get_serial_sequence(quote_ident(d.nspname) || '.' || quote_ident(c.relname), a.attname) AS sequence_name,
CASE WHEN COALESCE(td.typtype, tb.typtype, t.typtype) = 'e'::char
THEN array_to_string((SELECT array_agg(enumlabel) FROM pg_enum WHERE enumtypid = COALESCE(td.oid, tb.oid, a.atttypid))::varchar[], ',')
ELSE NULL
END AS enum_values,
CASE atttypid
WHEN 21 /*int2*/ THEN 16
WHEN 23 /*int4*/ THEN 32
WHEN 20 /*int8*/ THEN 64
WHEN 1700 /*numeric*/ THEN
CASE WHEN atttypmod = -1
THEN null
ELSE ((atttypmod - 4) >> 16) & 65535
END
WHEN 700 /*float4*/ THEN 24 /*FLT_MANT_DIG*/
WHEN 701 /*float8*/ THEN 53 /*DBL_MANT_DIG*/
ELSE null
END AS numeric_precision,
CASE
WHEN atttypid IN (21, 23, 20) THEN 0
WHEN atttypid IN (1700) THEN
CASE
WHEN atttypmod = -1 THEN null
ELSE (atttypmod - 4) & 65535
END
ELSE null
END AS numeric_scale,
CAST(
information_schema._pg_char_max_length(information_schema._pg_truetypid(a, t), information_schema._pg_truetypmod(a, t))
AS numeric
) AS size,
a.attnum = any (ct.conkey) as is_pkey,
COALESCE(NULLIF(a.attndims, 0), NULLIF(t.typndims, 0), (t.typcategory='A')::int) AS dimension
FROM
pg_class c
LEFT JOIN pg_attribute a ON a.attrelid = c.oid
LEFT JOIN pg_attrdef ad ON a.attrelid = ad.adrelid AND a.attnum = ad.adnum
LEFT JOIN pg_type t ON a.atttypid = t.oid
LEFT JOIN pg_type tb ON (a.attndims > 0 OR t.typcategory='A') AND t.typelem > 0 AND t.typelem = tb.oid OR t.typbasetype > 0 AND t.typbasetype = tb.oid
LEFT JOIN pg_type td ON t.typndims > 0 AND t.typbasetype > 0 AND tb.typelem = td.oid
LEFT JOIN pg_namespace d ON d.oid = c.relnamespace
LEFT JOIN pg_constraint ct ON ct.conrelid = c.oid AND ct.contype = 'p'
WHERE
a.attnum > 0 AND t.typname != '' AND NOT a.attisdropped
AND c.relname = 'audit_entry'
AND d.nspname = 'public'
ORDER BY
a.attnum; |
3 | 21:50:01.470 | | info | yii\db\Command::query | select
ct.conname as constraint_name,
a.attname as column_name,
fc.relname as foreign_table_name,
fns.nspname as foreign_table_schema,
fa.attname as foreign_column_name
from
(SELECT ct.conname, ct.conrelid, ct.confrelid, ct.conkey, ct.contype, ct.confkey, generate_subscripts(ct.conkey, 1) AS s
FROM pg_constraint ct
) AS ct
inner join pg_class c on c.oid=ct.conrelid
inner join pg_namespace ns on c.relnamespace=ns.oid
inner join pg_attribute a on a.attrelid=ct.conrelid and a.attnum = ct.conkey[ct.s]
left join pg_class fc on fc.oid=ct.confrelid
left join pg_namespace fns on fc.relnamespace=fns.oid
left join pg_attribute fa on fa.attrelid=ct.confrelid and fa.attnum = ct.confkey[ct.s]
where
ct.contype='f'
and c.relname='audit_entry'
and ns.nspname='public'
order by
fns.nspname, fc.relname, a.attnum |
4 | 21:50:01.507 | | info | yii\db\Connection::open | Opening DB connection: pgsql:host=139.82.9.37;port=5432;dbname=zoom_db |
5 | 21:50:01.536 | | info | yii\db\Command::query | SELECT EXISTS(SELECT "meeting"."id" AS "id", "host"."id" AS "host_id", "meeting"."start" AS "start", "meeting"."end" AS "end", "meeting"."created_by" AS "created_by", "meeting"."zoom_host_id" AS "zoom_host_id", "meeting"."auto_recording" AS "auto_recording" FROM "meeting" LEFT JOIN "host" ON "meeting"."host_id" = "host"."id" WHERE "meeting"."status"='In Progress') |
6 | 21:50:01.542 | | info | yii\db\Command::query | SELECT "meeting"."id" AS "id", "host"."id" AS "host_id", "meeting"."start" AS "start", "meeting"."end" AS "end", "meeting"."created_by" AS "created_by", "meeting"."zoom_host_id" AS "zoom_host_id", "meeting"."auto_recording" AS "auto_recording" FROM "meeting" LEFT JOIN "host" ON "meeting"."host_id" = "host"."id" WHERE "meeting"."status"='In Progress' |
7 | 21:50:01.551 | | info | yii\db\Command::query | SELECT
d.nspname AS table_schema,
c.relname AS table_name,
a.attname AS column_name,
COALESCE(td.typname, tb.typname, t.typname) AS data_type,
COALESCE(td.typtype, tb.typtype, t.typtype) AS type_type,
(SELECT nspname FROM pg_namespace WHERE oid = COALESCE(td.typnamespace, tb.typnamespace, t.typnamespace)) AS type_scheme,
a.attlen AS character_maximum_length,
pg_catalog.col_description(c.oid, a.attnum) AS column_comment,
a.atttypmod AS modifier,
a.attnotnull = false AS is_nullable,
CAST(pg_get_expr(ad.adbin, ad.adrelid) AS varchar) AS column_default,
coalesce(pg_get_expr(ad.adbin, ad.adrelid) ~ 'nextval',false) OR attidentity != '' AS is_autoinc,
pg_get_serial_sequence(quote_ident(d.nspname) || '.' || quote_ident(c.relname), a.attname) AS sequence_name,
CASE WHEN COALESCE(td.typtype, tb.typtype, t.typtype) = 'e'::char
THEN array_to_string((SELECT array_agg(enumlabel) FROM pg_enum WHERE enumtypid = COALESCE(td.oid, tb.oid, a.atttypid))::varchar[], ',')
ELSE NULL
END AS enum_values,
CASE atttypid
WHEN 21 /*int2*/ THEN 16
WHEN 23 /*int4*/ THEN 32
WHEN 20 /*int8*/ THEN 64
WHEN 1700 /*numeric*/ THEN
CASE WHEN atttypmod = -1
THEN null
ELSE ((atttypmod - 4) >> 16) & 65535
END
WHEN 700 /*float4*/ THEN 24 /*FLT_MANT_DIG*/
WHEN 701 /*float8*/ THEN 53 /*DBL_MANT_DIG*/
ELSE null
END AS numeric_precision,
CASE
WHEN atttypid IN (21, 23, 20) THEN 0
WHEN atttypid IN (1700) THEN
CASE
WHEN atttypmod = -1 THEN null
ELSE (atttypmod - 4) & 65535
END
ELSE null
END AS numeric_scale,
CAST(
information_schema._pg_char_max_length(information_schema._pg_truetypid(a, t), information_schema._pg_truetypmod(a, t))
AS numeric
) AS size,
a.attnum = any (ct.conkey) as is_pkey,
COALESCE(NULLIF(a.attndims, 0), NULLIF(t.typndims, 0), (t.typcategory='A')::int) AS dimension
FROM
pg_class c
LEFT JOIN pg_attribute a ON a.attrelid = c.oid
LEFT JOIN pg_attrdef ad ON a.attrelid = ad.adrelid AND a.attnum = ad.adnum
LEFT JOIN pg_type t ON a.atttypid = t.oid
LEFT JOIN pg_type tb ON (a.attndims > 0 OR t.typcategory='A') AND t.typelem > 0 AND t.typelem = tb.oid OR t.typbasetype > 0 AND t.typbasetype = tb.oid
LEFT JOIN pg_type td ON t.typndims > 0 AND t.typbasetype > 0 AND tb.typelem = td.oid
LEFT JOIN pg_namespace d ON d.oid = c.relnamespace
LEFT JOIN pg_constraint ct ON ct.conrelid = c.oid AND ct.contype = 'p'
WHERE
a.attnum > 0 AND t.typname != '' AND NOT a.attisdropped
AND c.relname = 'meeting'
AND d.nspname = 'public'
ORDER BY
a.attnum; |
8 | 21:50:01.571 | | info | yii\db\Command::query | select
ct.conname as constraint_name,
a.attname as column_name,
fc.relname as foreign_table_name,
fns.nspname as foreign_table_schema,
fa.attname as foreign_column_name
from
(SELECT ct.conname, ct.conrelid, ct.confrelid, ct.conkey, ct.contype, ct.confkey, generate_subscripts(ct.conkey, 1) AS s
FROM pg_constraint ct
) AS ct
inner join pg_class c on c.oid=ct.conrelid
inner join pg_namespace ns on c.relnamespace=ns.oid
inner join pg_attribute a on a.attrelid=ct.conrelid and a.attnum = ct.conkey[ct.s]
left join pg_class fc on fc.oid=ct.confrelid
left join pg_namespace fns on fc.relnamespace=fns.oid
left join pg_attribute fa on fa.attrelid=ct.confrelid and fa.attnum = ct.confkey[ct.s]
where
ct.contype='f'
and c.relname='meeting'
and ns.nspname='public'
order by
fns.nspname, fc.relname, a.attnum |
9 | 21:50:01.591 | | info | yii\db\Command::query | SELECT
d.nspname AS table_schema,
c.relname AS table_name,
a.attname AS column_name,
COALESCE(td.typname, tb.typname, t.typname) AS data_type,
COALESCE(td.typtype, tb.typtype, t.typtype) AS type_type,
(SELECT nspname FROM pg_namespace WHERE oid = COALESCE(td.typnamespace, tb.typnamespace, t.typnamespace)) AS type_scheme,
a.attlen AS character_maximum_length,
pg_catalog.col_description(c.oid, a.attnum) AS column_comment,
a.atttypmod AS modifier,
a.attnotnull = false AS is_nullable,
CAST(pg_get_expr(ad.adbin, ad.adrelid) AS varchar) AS column_default,
coalesce(pg_get_expr(ad.adbin, ad.adrelid) ~ 'nextval',false) OR attidentity != '' AS is_autoinc,
pg_get_serial_sequence(quote_ident(d.nspname) || '.' || quote_ident(c.relname), a.attname) AS sequence_name,
CASE WHEN COALESCE(td.typtype, tb.typtype, t.typtype) = 'e'::char
THEN array_to_string((SELECT array_agg(enumlabel) FROM pg_enum WHERE enumtypid = COALESCE(td.oid, tb.oid, a.atttypid))::varchar[], ',')
ELSE NULL
END AS enum_values,
CASE atttypid
WHEN 21 /*int2*/ THEN 16
WHEN 23 /*int4*/ THEN 32
WHEN 20 /*int8*/ THEN 64
WHEN 1700 /*numeric*/ THEN
CASE WHEN atttypmod = -1
THEN null
ELSE ((atttypmod - 4) >> 16) & 65535
END
WHEN 700 /*float4*/ THEN 24 /*FLT_MANT_DIG*/
WHEN 701 /*float8*/ THEN 53 /*DBL_MANT_DIG*/
ELSE null
END AS numeric_precision,
CASE
WHEN atttypid IN (21, 23, 20) THEN 0
WHEN atttypid IN (1700) THEN
CASE
WHEN atttypmod = -1 THEN null
ELSE (atttypmod - 4) & 65535
END
ELSE null
END AS numeric_scale,
CAST(
information_schema._pg_char_max_length(information_schema._pg_truetypid(a, t), information_schema._pg_truetypmod(a, t))
AS numeric
) AS size,
a.attnum = any (ct.conkey) as is_pkey,
COALESCE(NULLIF(a.attndims, 0), NULLIF(t.typndims, 0), (t.typcategory='A')::int) AS dimension
FROM
pg_class c
LEFT JOIN pg_attribute a ON a.attrelid = c.oid
LEFT JOIN pg_attrdef ad ON a.attrelid = ad.adrelid AND a.attnum = ad.adnum
LEFT JOIN pg_type t ON a.atttypid = t.oid
LEFT JOIN pg_type tb ON (a.attndims > 0 OR t.typcategory='A') AND t.typelem > 0 AND t.typelem = tb.oid OR t.typbasetype > 0 AND t.typbasetype = tb.oid
LEFT JOIN pg_type td ON t.typndims > 0 AND t.typbasetype > 0 AND tb.typelem = td.oid
LEFT JOIN pg_namespace d ON d.oid = c.relnamespace
LEFT JOIN pg_constraint ct ON ct.conrelid = c.oid AND ct.contype = 'p'
WHERE
a.attnum > 0 AND t.typname != '' AND NOT a.attisdropped
AND c.relname = 'user'
AND d.nspname = 'public'
ORDER BY
a.attnum; |
10 | 21:50:01.607 | | info | yii\db\Command::query | select
ct.conname as constraint_name,
a.attname as column_name,
fc.relname as foreign_table_name,
fns.nspname as foreign_table_schema,
fa.attname as foreign_column_name
from
(SELECT ct.conname, ct.conrelid, ct.confrelid, ct.conkey, ct.contype, ct.confkey, generate_subscripts(ct.conkey, 1) AS s
FROM pg_constraint ct
) AS ct
inner join pg_class c on c.oid=ct.conrelid
inner join pg_namespace ns on c.relnamespace=ns.oid
inner join pg_attribute a on a.attrelid=ct.conrelid and a.attnum = ct.conkey[ct.s]
left join pg_class fc on fc.oid=ct.confrelid
left join pg_namespace fns on fc.relnamespace=fns.oid
left join pg_attribute fa on fa.attrelid=ct.confrelid and fa.attnum = ct.confkey[ct.s]
where
ct.contype='f'
and c.relname='user'
and ns.nspname='public'
order by
fns.nspname, fc.relname, a.attnum |
11 | 21:50:01.616 | | info | yii\db\Command::query | SELECT * FROM "user" WHERE "id"=4 |
12 | 21:50:01.634 | | info | yii\db\Command::query | SELECT * FROM "user" WHERE ("access_token"='') AND ("status"=10) |
13 | 21:50:01.638 | | info | yii\httpclient\StreamTransport::send | POST https://zoom.us/oauth/token
Host: zoom.us
Authorization: Basic UnRpM01COWdROFduTW03QVV5RUtCZzpEcW5ocGNSRXNDa014aWZQeFZLODB6cGU2ZUI0UjI3SQ==
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
grant_type=account_credentials&account_id=tlFjyDPZSOqMAv7HVd-Ddg |
14 | 21:50:01.926 | | info | yii\httpclient\StreamTransport::send | PATCH https://api.zoom.us/v2/users/IeqnIHZpRHeOxRO0IU4eYg
Content-Type: application/json; charset=UTF-8
Authorization: Bearer eyJzdiI6IjAwMDAwMiIsImFsZyI6IkhTNTEyIiwidiI6IjIuMCIsImtpZCI6IjRlN2U1ZTBhLWFiODYtNDI5NS05OTllLWYxMzIzZjg1OTgwNyJ9.eyJhdWQiOiJodHRwczovL29hdXRoLnpvb20udXMiLCJ1aWQiOiI3dzNpR0FCd1F4bWtLTTMtaGFjY0tBIiwidmVyIjoxMCwiYXVpZCI6IjFjY2FiN2YwOTQ4MDkwZmM1ZmUxNGFhMWVjM2I5YWJjNGQ2YzY2NGVhYTExNjkxODRmY2VmZWQxZWI1OTI0MTIiLCJuYmYiOjE3NjA0ODk0MDEsImNvZGUiOiJEdkx0bnh3OFNfV1AxOHJDeURldXpneTRqdWUxWm1uMUEiLCJpc3MiOiJ6bTpjaWQ6UnRpM01COWdROFduTW03QVV5RUtCZyIsImdubyI6MCwiZXhwIjoxNzYwNDkzMDAxLCJ0eXBlIjozLCJpYXQiOjE3NjA0ODk0MDEsImFpZCI6InRsRmp5RFBaU09xTUF2N0hWZC1EZGcifQ.2CZ9qoPc6Xghr23jCVsAwgOv-5sktL4IgriOjyeEYyn0OjMEYx8DgLHBDkGB8VWyre5-ucSXS2oGRkzdm6vejA
{"type":2} |
15 | 21:50:02.310 | | info | yii\db\Command::execute | UPDATE "meeting" SET "basic"=0, "licensed"=1, "updated_by"=NULL, "updated_at"=1760489401 WHERE "id"=6158 |
16 | 21:50:02.315 | | info | yii\db\Command::query | INSERT INTO "audit_entry" ("route", "request_method", "created") VALUES ('zoom/add-licensed', 'CLI', '2025-10-14 21:50:02') RETURNING "id" |
17 | 21:50:02.322 | | info | yii\db\Command::query | SELECT
d.nspname AS table_schema,
c.relname AS table_name,
a.attname AS column_name,
COALESCE(td.typname, tb.typname, t.typname) AS data_type,
COALESCE(td.typtype, tb.typtype, t.typtype) AS type_type,
(SELECT nspname FROM pg_namespace WHERE oid = COALESCE(td.typnamespace, tb.typnamespace, t.typnamespace)) AS type_scheme,
a.attlen AS character_maximum_length,
pg_catalog.col_description(c.oid, a.attnum) AS column_comment,
a.atttypmod AS modifier,
a.attnotnull = false AS is_nullable,
CAST(pg_get_expr(ad.adbin, ad.adrelid) AS varchar) AS column_default,
coalesce(pg_get_expr(ad.adbin, ad.adrelid) ~ 'nextval',false) OR attidentity != '' AS is_autoinc,
pg_get_serial_sequence(quote_ident(d.nspname) || '.' || quote_ident(c.relname), a.attname) AS sequence_name,
CASE WHEN COALESCE(td.typtype, tb.typtype, t.typtype) = 'e'::char
THEN array_to_string((SELECT array_agg(enumlabel) FROM pg_enum WHERE enumtypid = COALESCE(td.oid, tb.oid, a.atttypid))::varchar[], ',')
ELSE NULL
END AS enum_values,
CASE atttypid
WHEN 21 /*int2*/ THEN 16
WHEN 23 /*int4*/ THEN 32
WHEN 20 /*int8*/ THEN 64
WHEN 1700 /*numeric*/ THEN
CASE WHEN atttypmod = -1
THEN null
ELSE ((atttypmod - 4) >> 16) & 65535
END
WHEN 700 /*float4*/ THEN 24 /*FLT_MANT_DIG*/
WHEN 701 /*float8*/ THEN 53 /*DBL_MANT_DIG*/
ELSE null
END AS numeric_precision,
CASE
WHEN atttypid IN (21, 23, 20) THEN 0
WHEN atttypid IN (1700) THEN
CASE
WHEN atttypmod = -1 THEN null
ELSE (atttypmod - 4) & 65535
END
ELSE null
END AS numeric_scale,
CAST(
information_schema._pg_char_max_length(information_schema._pg_truetypid(a, t), information_schema._pg_truetypmod(a, t))
AS numeric
) AS size,
a.attnum = any (ct.conkey) as is_pkey,
COALESCE(NULLIF(a.attndims, 0), NULLIF(t.typndims, 0), (t.typcategory='A')::int) AS dimension
FROM
pg_class c
LEFT JOIN pg_attribute a ON a.attrelid = c.oid
LEFT JOIN pg_attrdef ad ON a.attrelid = ad.adrelid AND a.attnum = ad.adnum
LEFT JOIN pg_type t ON a.atttypid = t.oid
LEFT JOIN pg_type tb ON (a.attndims > 0 OR t.typcategory='A') AND t.typelem > 0 AND t.typelem = tb.oid OR t.typbasetype > 0 AND t.typbasetype = tb.oid
LEFT JOIN pg_type td ON t.typndims > 0 AND t.typbasetype > 0 AND tb.typelem = td.oid
LEFT JOIN pg_namespace d ON d.oid = c.relnamespace
LEFT JOIN pg_constraint ct ON ct.conrelid = c.oid AND ct.contype = 'p'
WHERE
a.attnum > 0 AND t.typname != '' AND NOT a.attisdropped
AND c.relname = 'audit_trail'
AND d.nspname = 'public'
ORDER BY
a.attnum; |
18 | 21:50:02.329 | | info | yii\db\Command::query | select
ct.conname as constraint_name,
a.attname as column_name,
fc.relname as foreign_table_name,
fns.nspname as foreign_table_schema,
fa.attname as foreign_column_name
from
(SELECT ct.conname, ct.conrelid, ct.confrelid, ct.conkey, ct.contype, ct.confkey, generate_subscripts(ct.conkey, 1) AS s
FROM pg_constraint ct
) AS ct
inner join pg_class c on c.oid=ct.conrelid
inner join pg_namespace ns on c.relnamespace=ns.oid
inner join pg_attribute a on a.attrelid=ct.conrelid and a.attnum = ct.conkey[ct.s]
left join pg_class fc on fc.oid=ct.confrelid
left join pg_namespace fns on fc.relnamespace=fns.oid
left join pg_attribute fa on fa.attrelid=ct.confrelid and fa.attnum = ct.confkey[ct.s]
where
ct.contype='f'
and c.relname='audit_trail'
and ns.nspname='public'
order by
fns.nspname, fc.relname, a.attnum |
19 | 21:50:02.335 | | info | yii\db\Command::execute | INSERT INTO "audit_trail" ("entry_id", "user_id", "old_value", "new_value", "action", "model", "model_id", "field", "created") VALUES (1573746, NULL, '', '1', 'UPDATE', 'app\modules\v1\models\Meeting', '6158', 'licensed', '2025-10-14 21:50:02'), (1573746, NULL, '', '0', 'UPDATE', 'app\modules\v1\models\Meeting', '6158', 'basic', '2025-10-14 21:50:02') |
20 | 21:50:02.345 | | info | yii\db\Command::query | SELECT * FROM "user" WHERE "id"=4 |
21 | 21:50:02.348 | | info | yii\db\Command::query | SELECT * FROM "user" WHERE ("access_token"='') AND ("status"=10) |
22 | 21:50:02.351 | | info | yii\httpclient\StreamTransport::send | POST https://zoom.us/oauth/token
Host: zoom.us
Authorization: Basic UnRpM01COWdROFduTW03QVV5RUtCZzpEcW5ocGNSRXNDa014aWZQeFZLODB6cGU2ZUI0UjI3SQ==
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
grant_type=account_credentials&account_id=tlFjyDPZSOqMAv7HVd-Ddg |
23 | 21:50:02.666 | | info | yii\httpclient\StreamTransport::send | PATCH https://api.zoom.us/v2/users/lKgat1qhRE2AQMNevF1QUQ
Content-Type: application/json; charset=UTF-8
Authorization: Bearer eyJzdiI6IjAwMDAwMiIsImFsZyI6IkhTNTEyIiwidiI6IjIuMCIsImtpZCI6IjkxNTJjZGE2LWFhYWUtNDRhZC1hMTNkLWUyOTMyMDEyZTFkYiJ9.eyJhdWQiOiJodHRwczovL29hdXRoLnpvb20udXMiLCJ1aWQiOiI3dzNpR0FCd1F4bWtLTTMtaGFjY0tBIiwidmVyIjoxMCwiYXVpZCI6IjFjY2FiN2YwOTQ4MDkwZmM1ZmUxNGFhMWVjM2I5YWJjNGQ2YzY2NGVhYTExNjkxODRmY2VmZWQxZWI1OTI0MTIiLCJuYmYiOjE3NjA0ODk0MDIsImNvZGUiOiJ1ZmgtZnZPbVNHV3NXSUVwekhOQkZRbzdxbzNxU3ZaaHUiLCJpc3MiOiJ6bTpjaWQ6UnRpM01COWdROFduTW03QVV5RUtCZyIsImdubyI6MCwiZXhwIjoxNzYwNDkzMDAyLCJ0eXBlIjozLCJpYXQiOjE3NjA0ODk0MDIsImFpZCI6InRsRmp5RFBaU09xTUF2N0hWZC1EZGcifQ.wcDNXXWxrRhV6zqyGpTDYVbB5SpvaFb_WCaLQgwvoLkUE7eFO408tenUjXysF2T3BdaC_tkOOJIb66Nj6m0FEQ
{"type":2} |
24 | 21:50:03.099 | | info | yii\db\Command::execute | UPDATE "meeting" SET "basic"=0, "licensed"=1, "updated_by"=NULL, "updated_at"=1760489401 WHERE "id"=6157 |
25 | 21:50:03.105 | | info | yii\db\Command::execute | INSERT INTO "audit_trail" ("entry_id", "user_id", "old_value", "new_value", "action", "model", "model_id", "field", "created") VALUES (1573746, NULL, '', '1', 'UPDATE', 'app\modules\v1\models\Meeting', '6157', 'licensed', '2025-10-14 21:50:03'), (1573746, NULL, '', '0', 'UPDATE', 'app\modules\v1\models\Meeting', '6157', 'basic', '2025-10-14 21:50:03') |
26 | 21:50:03.110 | | info | yii\db\Command::query | SELECT * FROM "user" WHERE "id"=3 |
27 | 21:50:03.113 | | info | yii\db\Command::query | SELECT * FROM "user" WHERE ("access_token"='') AND ("status"=10) |
28 | 21:50:03.118 | | info | yii\httpclient\StreamTransport::send | POST https://zoom.us/oauth/token
Host: zoom.us
Authorization: Basic bFF6S2UzQ0ZUaWVoWEtjWmljRzZzdzoycEtPWWs1VDdKYnd3UFowS2UxMG1LWVkzdml0aUNLbg==
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
grant_type=account_credentials&account_id=soZiIcnPSK6fyQ68TpYD0w |
29 | 21:50:03.399 | | info | yii\httpclient\StreamTransport::send | PATCH https://api.zoom.us/v2/users/bYxN5XtdSXeqhJQO88SUZA
Content-Type: application/json; charset=UTF-8
Authorization: Bearer eyJzdiI6IjAwMDAwMiIsImFsZyI6IkhTNTEyIiwidiI6IjIuMCIsImtpZCI6IjMxMWQzNjg1LTc2YTUtNDFiZC04ZTQ1LTlhYjE2ODczNTdlZCJ9.eyJhdWQiOiJodHRwczovL29hdXRoLnpvb20udXMiLCJ1aWQiOiJDc0h1RThJOVNWR2pUREczREpNcTJ3IiwidmVyIjoxMCwiYXVpZCI6IjNkYmYwOGY2MjBlYWRhYjZhYjljNjcxZmQ3Y2I4YTYwZDI3MjAwZDg3ZWFkNzg1NWE0ZWYxMmE0ZWQzNTI4MTMiLCJuYmYiOjE3NjA0ODk0MDMsImNvZGUiOiJRNVBhLWlIbFJGbWZtNmRXc054a25nc3Y5Y2N1VFJCbnYiLCJpc3MiOiJ6bTpjaWQ6bFF6S2UzQ0ZUaWVoWEtjWmljRzZzdyIsImdubyI6MCwiZXhwIjoxNzYwNDkzMDAzLCJ0eXBlIjozLCJpYXQiOjE3NjA0ODk0MDMsImFpZCI6InNvWmlJY25QU0s2ZnlRNjhUcFlEMHcifQ.q9K4iI09Lz5B_4cEl0kVngH125wYhNRnMncV3s_q2wbCFwoW51lNEZibg8otKGQRzWfrFIfDKt7smsPmbBL_Bg
{"type":2} |
30 | 21:50:03.844 | | info | yii\db\Command::execute | UPDATE "meeting" SET "basic"=0, "licensed"=1, "updated_by"=NULL, "updated_at"=1760489401 WHERE "id"=6164 |
31 | 21:50:03.850 | | info | yii\db\Command::execute | INSERT INTO "audit_trail" ("entry_id", "user_id", "old_value", "new_value", "action", "model", "model_id", "field", "created") VALUES (1573746, NULL, '', '1', 'UPDATE', 'app\modules\v1\models\Meeting', '6164', 'licensed', '2025-10-14 21:50:03'), (1573746, NULL, '', '0', 'UPDATE', 'app\modules\v1\models\Meeting', '6164', 'basic', '2025-10-14 21:50:03') |
32 | 21:50:03.856 | | info | yii\db\Command::query | SELECT * FROM "user" WHERE "id"=4 |
33 | 21:50:03.865 | | info | yii\db\Command::query | SELECT * FROM "user" WHERE ("access_token"='') AND ("status"=10) |
34 | 21:50:03.868 | | info | yii\httpclient\StreamTransport::send | POST https://zoom.us/oauth/token
Host: zoom.us
Authorization: Basic UnRpM01COWdROFduTW03QVV5RUtCZzpEcW5ocGNSRXNDa014aWZQeFZLODB6cGU2ZUI0UjI3SQ==
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
grant_type=account_credentials&account_id=tlFjyDPZSOqMAv7HVd-Ddg |
35 | 21:50:04.185 | | info | yii\httpclient\StreamTransport::send | PATCH https://api.zoom.us/v2/users/cneRbTvATjeGEOP1MV05OA
Content-Type: application/json; charset=UTF-8
Authorization: Bearer eyJzdiI6IjAwMDAwMiIsImFsZyI6IkhTNTEyIiwidiI6IjIuMCIsImtpZCI6IjJkNzVhZDI2LWM5ZDEtNDE3Ni04MWMzLWE2NzA4YjU2NTU2YiJ9.eyJhdWQiOiJodHRwczovL29hdXRoLnpvb20udXMiLCJ1aWQiOiI3dzNpR0FCd1F4bWtLTTMtaGFjY0tBIiwidmVyIjoxMCwiYXVpZCI6IjFjY2FiN2YwOTQ4MDkwZmM1ZmUxNGFhMWVjM2I5YWJjNGQ2YzY2NGVhYTExNjkxODRmY2VmZWQxZWI1OTI0MTIiLCJuYmYiOjE3NjA0ODk0MDQsImNvZGUiOiJLMGdsZnpSMVM5Q2RVR0NaQXFaZGRBTTVnb3lISXBZZFMiLCJpc3MiOiJ6bTpjaWQ6UnRpM01COWdROFduTW03QVV5RUtCZyIsImdubyI6MCwiZXhwIjoxNzYwNDkzMDA0LCJ0eXBlIjozLCJpYXQiOjE3NjA0ODk0MDQsImFpZCI6InRsRmp5RFBaU09xTUF2N0hWZC1EZGcifQ.gA8kcmwYoFCGdoewGuYjjVSViOsqkUdGWoAvTO3z_9Uou6LAXQq-trxuFb46rHdKCYyGGWMAbhZMfUsaOLlbIA
{"type":2} |
36 | 21:50:04.977 | | info | yii\db\Command::execute | UPDATE "meeting" SET "basic"=0, "licensed"=1, "updated_by"=NULL, "updated_at"=1760489401 WHERE "id"=6156 |
37 | 21:50:04.982 | | info | yii\db\Command::execute | INSERT INTO "audit_trail" ("entry_id", "user_id", "old_value", "new_value", "action", "model", "model_id", "field", "created") VALUES (1573746, NULL, '', '1', 'UPDATE', 'app\modules\v1\models\Meeting', '6156', 'licensed', '2025-10-14 21:50:04'), (1573746, NULL, '', '0', 'UPDATE', 'app\modules\v1\models\Meeting', '6156', 'basic', '2025-10-14 21:50:04') |
38 | 21:50:04.988 | | info | yii\db\Command::query | SELECT * FROM "user" WHERE "id"=4 |
39 | 21:50:04.991 | | info | yii\db\Command::query | SELECT * FROM "user" WHERE ("access_token"='') AND ("status"=10) |
40 | 21:50:04.995 | | info | yii\httpclient\StreamTransport::send | POST https://zoom.us/oauth/token
Host: zoom.us
Authorization: Basic UnRpM01COWdROFduTW03QVV5RUtCZzpEcW5ocGNSRXNDa014aWZQeFZLODB6cGU2ZUI0UjI3SQ==
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
grant_type=account_credentials&account_id=tlFjyDPZSOqMAv7HVd-Ddg |
41 | 21:50:05.303 | | info | yii\httpclient\StreamTransport::send | PATCH https://api.zoom.us/v2/users/mIYDXf-0QOm1A5Bum77U8Q
Content-Type: application/json; charset=UTF-8
Authorization: Bearer eyJzdiI6IjAwMDAwMiIsImFsZyI6IkhTNTEyIiwidiI6IjIuMCIsImtpZCI6IjkzNjY4NTk5LWU1NzAtNDdjZC1hMTRkLWQ2NmFiNDQ4Yjg0YSJ9.eyJhdWQiOiJodHRwczovL29hdXRoLnpvb20udXMiLCJ1aWQiOiI3dzNpR0FCd1F4bWtLTTMtaGFjY0tBIiwidmVyIjoxMCwiYXVpZCI6IjFjY2FiN2YwOTQ4MDkwZmM1ZmUxNGFhMWVjM2I5YWJjNGQ2YzY2NGVhYTExNjkxODRmY2VmZWQxZWI1OTI0MTIiLCJuYmYiOjE3NjA0ODk0MDUsImNvZGUiOiJ5dllVSWs0alJEaWszUGdEeGNZX0dnM0x4a1BtOXpSQ1EiLCJpc3MiOiJ6bTpjaWQ6UnRpM01COWdROFduTW03QVV5RUtCZyIsImdubyI6MCwiZXhwIjoxNzYwNDkzMDA1LCJ0eXBlIjozLCJpYXQiOjE3NjA0ODk0MDUsImFpZCI6InRsRmp5RFBaU09xTUF2N0hWZC1EZGcifQ.TkKCKWTUWs0ect6c6sObkLeszilLPGEX84_Hmt2FzZ3GNYu6F1rVK-jpDYqM-gWdJevjdM6dZR0A0e2dZT3zxQ
{"type":2} |
42 | 21:50:06.057 | | info | yii\db\Command::execute | UPDATE "meeting" SET "basic"=0, "licensed"=1, "updated_by"=NULL, "updated_at"=1760489401 WHERE "id"=6159 |
43 | 21:50:06.062 | | info | yii\db\Command::execute | INSERT INTO "audit_trail" ("entry_id", "user_id", "old_value", "new_value", "action", "model", "model_id", "field", "created") VALUES (1573746, NULL, '', '1', 'UPDATE', 'app\modules\v1\models\Meeting', '6159', 'licensed', '2025-10-14 21:50:06'), (1573746, NULL, '', '0', 'UPDATE', 'app\modules\v1\models\Meeting', '6159', 'basic', '2025-10-14 21:50:06') |
44 | 21:50:06.069 | | info | yii\db\Command::execute | UPDATE "audit_entry" SET "duration"=4.671098947525, "memory_max"=2633096 WHERE "id"=1573746 |