diff --git a/apiary.apib b/apiary.apib index 309c1b2f..029ca954 100644 --- a/apiary.apib +++ b/apiary.apib @@ -431,6 +431,7 @@ We list all backwards-compatible additions here. These are currently available i - We replaced `task_type_rate` with `work_type_rate` in `projects-v2/tasks.list`, `projects-v2/tasks.info`, `projects-v2/tasks.create` and `projects-v2/tasks.update`. `task_type_rate` was never used. - We added `project_id` to the `tasks.create` endpoint. - We added the `users.listDaysOff` and `dayOffTypes.list` endpoints. +- We added `email_verification_status` to `users.me`. #### December 2023 - The `dealPhases.list` endpoint can now filter phases by pipeline id. @@ -1184,6 +1185,10 @@ Get the current authenticated user. + first_name: `John` (string) + last_name: `Smith` (string) + email: `john@teamleader.eu` (string) + + email_verification_status: `confirmed` (enum) + + Members + + pending + + confirmed + telephones (array[Telephone]) + language: `nl-BE` (enum) + Members diff --git a/src/01-general/users.apib b/src/01-general/users.apib index 706f7b6b..0a9c8b8b 100644 --- a/src/01-general/users.apib +++ b/src/01-general/users.apib @@ -19,6 +19,10 @@ Get the current authenticated user. + first_name: `John` (string) + last_name: `Smith` (string) + email: `john@teamleader.eu` (string) + + email_verification_status: `confirmed` (enum) + + Members + + pending + + confirmed + telephones (array[Telephone]) + language: `nl-BE` (enum) + Members diff --git a/src/changes-backwards-compatible.apib b/src/changes-backwards-compatible.apib index ae4217e0..a38a8a85 100644 --- a/src/changes-backwards-compatible.apib +++ b/src/changes-backwards-compatible.apib @@ -9,6 +9,7 @@ We list all backwards-compatible additions here. These are currently available i - We replaced `task_type_rate` with `work_type_rate` in `projects-v2/tasks.list`, `projects-v2/tasks.info`, `projects-v2/tasks.create` and `projects-v2/tasks.update`. `task_type_rate` was never used. - We added `project_id` to the `tasks.create` endpoint. - We added the `users.listDaysOff` and `dayOffTypes.list` endpoints. +- We added `email_verification_status` to `users.me`. #### December 2023 - The `dealPhases.list` endpoint can now filter phases by pipeline id.