1 | 21:10:01.193 | | info | yii\db\Connection::open | Opening DB connection: pgsql:host=139.82.9.37;port=5432;dbname=zoom_audit_db |
2 | 21:10:01.226 | | 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:10:01.239 | | 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:10:01.282 | | info | yii\db\Connection::open | Opening DB connection: pgsql:host=139.82.9.37;port=5432;dbname=zoom_db |
5 | 21:10:01.305 | | 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:10:01.311 | | 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:10:01.315 | | 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:10:01.335 | | 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:10:01.349 | | 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:10:01.361 | | 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:10:01.366 | | info | yii\db\Command::query | SELECT * FROM "user" WHERE "id"=4 |
12 | 21:10:01.380 | | info | yii\db\Command::query | SELECT * FROM "user" WHERE ("access_token"='') AND ("status"=10) |
13 | 21:10:01.383 | | 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:10:01.674 | | info | yii\httpclient\StreamTransport::send | PATCH https://api.zoom.us/v2/users/IeqnIHZpRHeOxRO0IU4eYg
Content-Type: application/json; charset=UTF-8
Authorization: Bearer eyJzdiI6IjAwMDAwMiIsImFsZyI6IkhTNTEyIiwidiI6IjIuMCIsImtpZCI6Ijk3NmMyMjNmLWZjOTUtNGY4Yi1iNTYxLWVhMjRkOWM1OGRlNSJ9.eyJhdWQiOiJodHRwczovL29hdXRoLnpvb20udXMiLCJ1aWQiOiI3dzNpR0FCd1F4bWtLTTMtaGFjY0tBIiwidmVyIjoxMCwiYXVpZCI6IjFjY2FiN2YwOTQ4MDkwZmM1ZmUxNGFhMWVjM2I5YWJjNGQ2YzY2NGVhYTExNjkxODRmY2VmZWQxZWI1OTI0MTIiLCJuYmYiOjE3NjA0ODcwMDEsImNvZGUiOiJxeU16Und2SlNGV01YR3k5Wm5Jc21RakRHRnNlaWNpRGYiLCJpc3MiOiJ6bTpjaWQ6UnRpM01COWdROFduTW03QVV5RUtCZyIsImdubyI6MCwiZXhwIjoxNzYwNDkwNjAxLCJ0eXBlIjozLCJpYXQiOjE3NjA0ODcwMDEsImFpZCI6InRsRmp5RFBaU09xTUF2N0hWZC1EZGcifQ.7AYtKKt6WT6xLcdSUMraHJgClRiKkFZ_rIbi91ugm7rNnq796-XYwolTEejDoBmMRz976dwucWJzZiISSGGLaQ
{"type":2} |
15 | 21:10:02.425 | | info | yii\db\Command::execute | UPDATE "meeting" SET "basic"=0, "licensed"=1, "updated_by"=NULL, "updated_at"=1760487001 WHERE "id"=6158 |
16 | 21:10:02.431 | | info | yii\db\Command::query | INSERT INTO "audit_entry" ("route", "request_method", "created") VALUES ('zoom/add-licensed', 'CLI', '2025-10-14 21:10:02') RETURNING "id" |
17 | 21:10:02.438 | | 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:10:02.446 | | 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:10:02.451 | | info | yii\db\Command::execute | INSERT INTO "audit_trail" ("entry_id", "user_id", "old_value", "new_value", "action", "model", "model_id", "field", "created") VALUES (1559925, NULL, '', '1', 'UPDATE', 'app\modules\v1\models\Meeting', '6158', 'licensed', '2025-10-14 21:10:02'), (1559925, NULL, '', '0', 'UPDATE', 'app\modules\v1\models\Meeting', '6158', 'basic', '2025-10-14 21:10:02') |
20 | 21:10:02.457 | | info | yii\db\Command::query | SELECT * FROM "user" WHERE "id"=4 |
21 | 21:10:02.460 | | info | yii\db\Command::query | SELECT * FROM "user" WHERE ("access_token"='') AND ("status"=10) |
22 | 21:10:02.463 | | 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:10:02.746 | | info | yii\httpclient\StreamTransport::send | PATCH https://api.zoom.us/v2/users/dGX1fq8yS4unN5tDLhcgIg
Content-Type: application/json; charset=UTF-8
Authorization: Bearer eyJzdiI6IjAwMDAwMiIsImFsZyI6IkhTNTEyIiwidiI6IjIuMCIsImtpZCI6IjE4MGYyYmE2LTczMTQtNDViZi05ZDgyLTI1MDU5N2UwZmYxOSJ9.eyJhdWQiOiJodHRwczovL29hdXRoLnpvb20udXMiLCJ1aWQiOiI3dzNpR0FCd1F4bWtLTTMtaGFjY0tBIiwidmVyIjoxMCwiYXVpZCI6IjFjY2FiN2YwOTQ4MDkwZmM1ZmUxNGFhMWVjM2I5YWJjNGQ2YzY2NGVhYTExNjkxODRmY2VmZWQxZWI1OTI0MTIiLCJuYmYiOjE3NjA0ODcwMDIsImNvZGUiOiJsUzNudHRFN1NnQ1gzekdkY2pkU0pBNFVGVU5RaG1HMlYiLCJpc3MiOiJ6bTpjaWQ6UnRpM01COWdROFduTW03QVV5RUtCZyIsImdubyI6MCwiZXhwIjoxNzYwNDkwNjAyLCJ0eXBlIjozLCJpYXQiOjE3NjA0ODcwMDIsImFpZCI6InRsRmp5RFBaU09xTUF2N0hWZC1EZGcifQ.uwdLrSQYSqzUx5HukOaBTNiOYD97an4lvtuuf14IzvQHqMctNk-7ntC4xQLVVDrl4J1ULqDg2RIiHuxtDl2wBA
{"type":2} |
24 | 21:10:03.180 | | info | yii\db\Command::execute | UPDATE "meeting" SET "basic"=0, "licensed"=1, "updated_by"=NULL, "updated_at"=1760487001 WHERE "id"=6155 |
25 | 21:10:03.185 | | info | yii\db\Command::execute | INSERT INTO "audit_trail" ("entry_id", "user_id", "old_value", "new_value", "action", "model", "model_id", "field", "created") VALUES (1559925, NULL, '', '1', 'UPDATE', 'app\modules\v1\models\Meeting', '6155', 'licensed', '2025-10-14 21:10:03'), (1559925, NULL, '', '0', 'UPDATE', 'app\modules\v1\models\Meeting', '6155', 'basic', '2025-10-14 21:10:03') |
26 | 21:10:03.190 | | info | yii\db\Command::query | SELECT * FROM "user" WHERE "id"=4 |
27 | 21:10:03.193 | | info | yii\db\Command::query | SELECT * FROM "user" WHERE ("access_token"='') AND ("status"=10) |
28 | 21:10:03.195 | | 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 |
29 | 21:10:03.472 | | info | yii\httpclient\StreamTransport::send | PATCH https://api.zoom.us/v2/users/lKgat1qhRE2AQMNevF1QUQ
Content-Type: application/json; charset=UTF-8
Authorization: Bearer eyJzdiI6IjAwMDAwMiIsImFsZyI6IkhTNTEyIiwidiI6IjIuMCIsImtpZCI6IjkwNTgwOWQyLWMyYTMtNDg1OC1iYWNjLTYzMjJjYzY0NWE2OCJ9.eyJhdWQiOiJodHRwczovL29hdXRoLnpvb20udXMiLCJ1aWQiOiI3dzNpR0FCd1F4bWtLTTMtaGFjY0tBIiwidmVyIjoxMCwiYXVpZCI6IjFjY2FiN2YwOTQ4MDkwZmM1ZmUxNGFhMWVjM2I5YWJjNGQ2YzY2NGVhYTExNjkxODRmY2VmZWQxZWI1OTI0MTIiLCJuYmYiOjE3NjA0ODcwMDMsImNvZGUiOiJuQ1ZtRnliWVJhaUVwZ2E3NGNSNXN3UTdjT1VHVVk3UUUiLCJpc3MiOiJ6bTpjaWQ6UnRpM01COWdROFduTW03QVV5RUtCZyIsImdubyI6MCwiZXhwIjoxNzYwNDkwNjAzLCJ0eXBlIjozLCJpYXQiOjE3NjA0ODcwMDMsImFpZCI6InRsRmp5RFBaU09xTUF2N0hWZC1EZGcifQ.2ZT7G5l1enI57agCD-kkchenfW4FBGMe6O93Z3tL53BIuOBCh1vCMrKahcljK9pUcpSx8m07qg3Q-OJ1kFRTvQ
{"type":2} |
30 | 21:10:03.887 | | info | yii\db\Command::execute | UPDATE "meeting" SET "basic"=0, "licensed"=1, "updated_by"=NULL, "updated_at"=1760487001 WHERE "id"=6157 |
31 | 21:10:03.892 | | info | yii\db\Command::execute | INSERT INTO "audit_trail" ("entry_id", "user_id", "old_value", "new_value", "action", "model", "model_id", "field", "created") VALUES (1559925, NULL, '', '1', 'UPDATE', 'app\modules\v1\models\Meeting', '6157', 'licensed', '2025-10-14 21:10:03'), (1559925, NULL, '', '0', 'UPDATE', 'app\modules\v1\models\Meeting', '6157', 'basic', '2025-10-14 21:10:03') |
32 | 21:10:03.897 | | info | yii\db\Command::query | SELECT * FROM "user" WHERE "id"=3 |
33 | 21:10:03.902 | | info | yii\db\Command::query | SELECT * FROM "user" WHERE ("access_token"='') AND ("status"=10) |
34 | 21:10:03.905 | | 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 |
35 | 21:10:04.189 | | info | yii\httpclient\StreamTransport::send | PATCH https://api.zoom.us/v2/users/bYxN5XtdSXeqhJQO88SUZA
Content-Type: application/json; charset=UTF-8
Authorization: Bearer eyJzdiI6IjAwMDAwMiIsImFsZyI6IkhTNTEyIiwidiI6IjIuMCIsImtpZCI6IjRiODM5YzAzLTIxMGMtNGVkNi05NTg4LTRmZTg5NzQ4YzNlMSJ9.eyJhdWQiOiJodHRwczovL29hdXRoLnpvb20udXMiLCJ1aWQiOiJDc0h1RThJOVNWR2pUREczREpNcTJ3IiwidmVyIjoxMCwiYXVpZCI6IjNkYmYwOGY2MjBlYWRhYjZhYjljNjcxZmQ3Y2I4YTYwZDI3MjAwZDg3ZWFkNzg1NWE0ZWYxMmE0ZWQzNTI4MTMiLCJuYmYiOjE3NjA0ODcwMDQsImNvZGUiOiJtX3NIU3hsUFF0bWpIMzRadjBXd1pBMXRDZTNwMTcxSkQiLCJpc3MiOiJ6bTpjaWQ6bFF6S2UzQ0ZUaWVoWEtjWmljRzZzdyIsImdubyI6MCwiZXhwIjoxNzYwNDkwNjA0LCJ0eXBlIjozLCJpYXQiOjE3NjA0ODcwMDQsImFpZCI6InNvWmlJY25QU0s2ZnlRNjhUcFlEMHcifQ.qqoJGVzcrXTechicF4zNOIxrtDBDmooYqfR58hOENNPvf8GHscXfWZLodCmYzskxguhH3JBcGgrwhQe53PqVyw
{"type":2} |
36 | 21:10:04.582 | | info | yii\db\Command::execute | UPDATE "meeting" SET "basic"=0, "licensed"=1, "updated_by"=NULL, "updated_at"=1760487001 WHERE "id"=6164 |
37 | 21:10:04.587 | | info | yii\db\Command::execute | INSERT INTO "audit_trail" ("entry_id", "user_id", "old_value", "new_value", "action", "model", "model_id", "field", "created") VALUES (1559925, NULL, '', '1', 'UPDATE', 'app\modules\v1\models\Meeting', '6164', 'licensed', '2025-10-14 21:10:04'), (1559925, NULL, '', '0', 'UPDATE', 'app\modules\v1\models\Meeting', '6164', 'basic', '2025-10-14 21:10:04') |
38 | 21:10:04.593 | | info | yii\db\Command::query | SELECT * FROM "user" WHERE "id"=4 |
39 | 21:10:04.596 | | info | yii\db\Command::query | SELECT * FROM "user" WHERE ("access_token"='') AND ("status"=10) |
40 | 21:10:04.598 | | 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:10:04.968 | | info | yii\httpclient\StreamTransport::send | PATCH https://api.zoom.us/v2/users/cneRbTvATjeGEOP1MV05OA
Content-Type: application/json; charset=UTF-8
Authorization: Bearer eyJzdiI6IjAwMDAwMiIsImFsZyI6IkhTNTEyIiwidiI6IjIuMCIsImtpZCI6ImMzY2Y0NTdmLTNjOWMtNDdlOS04OTU3LThiYzk2Yzk2ZGRhZiJ9.eyJhdWQiOiJodHRwczovL29hdXRoLnpvb20udXMiLCJ1aWQiOiI3dzNpR0FCd1F4bWtLTTMtaGFjY0tBIiwidmVyIjoxMCwiYXVpZCI6IjFjY2FiN2YwOTQ4MDkwZmM1ZmUxNGFhMWVjM2I5YWJjNGQ2YzY2NGVhYTExNjkxODRmY2VmZWQxZWI1OTI0MTIiLCJuYmYiOjE3NjA0ODcwMDQsImNvZGUiOiI2WnRybVJ3bFNOUzNuUjdSb0cwcEhnaEF5S2dmaURMT0IiLCJpc3MiOiJ6bTpjaWQ6UnRpM01COWdROFduTW03QVV5RUtCZyIsImdubyI6MCwiZXhwIjoxNzYwNDkwNjA0LCJ0eXBlIjozLCJpYXQiOjE3NjA0ODcwMDQsImFpZCI6InRsRmp5RFBaU09xTUF2N0hWZC1EZGcifQ.PDHThVhTk4vPLUTrv45xMtCjkGOpjUHbBKd79lW2hcydkyBFL3au0kxt0hz33E-J2nXHiMnrnIZvQdxvWAaYCw
{"type":2} |
42 | 21:10:05.380 | | info | yii\db\Command::execute | UPDATE "meeting" SET "basic"=0, "licensed"=1, "updated_by"=NULL, "updated_at"=1760487001 WHERE "id"=6156 |
43 | 21:10:05.384 | | info | yii\db\Command::execute | INSERT INTO "audit_trail" ("entry_id", "user_id", "old_value", "new_value", "action", "model", "model_id", "field", "created") VALUES (1559925, NULL, '', '1', 'UPDATE', 'app\modules\v1\models\Meeting', '6156', 'licensed', '2025-10-14 21:10:05'), (1559925, NULL, '', '0', 'UPDATE', 'app\modules\v1\models\Meeting', '6156', 'basic', '2025-10-14 21:10:05') |
44 | 21:10:05.389 | | info | yii\db\Command::query | SELECT * FROM "user" WHERE "id"=4 |
45 | 21:10:05.395 | | info | yii\db\Command::query | SELECT * FROM "user" WHERE ("access_token"='') AND ("status"=10) |
46 | 21:10:05.397 | | 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 |
47 | 21:10:05.675 | | info | yii\httpclient\StreamTransport::send | PATCH https://api.zoom.us/v2/users/mIYDXf-0QOm1A5Bum77U8Q
Content-Type: application/json; charset=UTF-8
Authorization: Bearer eyJzdiI6IjAwMDAwMiIsImFsZyI6IkhTNTEyIiwidiI6IjIuMCIsImtpZCI6ImY4YjM4YmViLWJmYjEtNGZmOS04NTA0LWQ1Njk1NmI3NjcwNSJ9.eyJhdWQiOiJodHRwczovL29hdXRoLnpvb20udXMiLCJ1aWQiOiI3dzNpR0FCd1F4bWtLTTMtaGFjY0tBIiwidmVyIjoxMCwiYXVpZCI6IjFjY2FiN2YwOTQ4MDkwZmM1ZmUxNGFhMWVjM2I5YWJjNGQ2YzY2NGVhYTExNjkxODRmY2VmZWQxZWI1OTI0MTIiLCJuYmYiOjE3NjA0ODcwMDUsImNvZGUiOiJEMlY2cWc0TlFBLXN2N25Ic3EyT2dBWmtZM1lvVWxJOHQiLCJpc3MiOiJ6bTpjaWQ6UnRpM01COWdROFduTW03QVV5RUtCZyIsImdubyI6MCwiZXhwIjoxNzYwNDkwNjA1LCJ0eXBlIjozLCJpYXQiOjE3NjA0ODcwMDUsImFpZCI6InRsRmp5RFBaU09xTUF2N0hWZC1EZGcifQ.ED5tqpIFtb4mTTb3DDzurDC-bJ3CoClHHCaHcVq00sdZO1_mSwySoZfhB3U7cg8DSCGHMwRtrxRwQpe8ozXRTA
{"type":2} |
48 | 21:10:06.388 | | info | yii\db\Command::execute | UPDATE "meeting" SET "basic"=0, "licensed"=1, "updated_by"=NULL, "updated_at"=1760487001 WHERE "id"=6159 |
49 | 21:10:06.392 | | info | yii\db\Command::execute | INSERT INTO "audit_trail" ("entry_id", "user_id", "old_value", "new_value", "action", "model", "model_id", "field", "created") VALUES (1559925, NULL, '', '1', 'UPDATE', 'app\modules\v1\models\Meeting', '6159', 'licensed', '2025-10-14 21:10:06'), (1559925, NULL, '', '0', 'UPDATE', 'app\modules\v1\models\Meeting', '6159', 'basic', '2025-10-14 21:10:06') |
50 | 21:10:06.398 | | info | yii\db\Command::execute | UPDATE "audit_entry" SET "duration"=5.2312881946564, "memory_max"=2651232 WHERE "id"=1559925 |