|
|
@ -1,4 +1,5 @@
|
|
|
|
# Copyright 2016 OpenMarket Ltd
|
|
|
|
# Copyright 2016 OpenMarket Ltd
|
|
|
|
|
|
|
|
# Copyright 2019 The Matrix.org Foundation C.I.C.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
@ -89,8 +90,19 @@ paths:
|
|
|
|
- User data
|
|
|
|
- User data
|
|
|
|
post:
|
|
|
|
post:
|
|
|
|
summary: Adds contact information to the user's account.
|
|
|
|
summary: Adds contact information to the user's account.
|
|
|
|
description: Adds contact information to the user's account.
|
|
|
|
description: |-
|
|
|
|
|
|
|
|
Adds contact information to the user's account.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This endpoint is deprecated in favour of the more specific ``/3pid/add``
|
|
|
|
|
|
|
|
and ``/3pid/bind`` endpoints.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.. Note::
|
|
|
|
|
|
|
|
Previously this endpoint supported a ``bind`` parameter. This parameter
|
|
|
|
|
|
|
|
has been removed, making this endpoint behave as though it was ``false``.
|
|
|
|
|
|
|
|
This results in this endpoint being an equivalent to ``/3pid/bind`` rather
|
|
|
|
|
|
|
|
than dual-purpose.
|
|
|
|
operationId: post3PIDs
|
|
|
|
operationId: post3PIDs
|
|
|
|
|
|
|
|
deprecated: true
|
|
|
|
security:
|
|
|
|
security:
|
|
|
|
- accessToken: []
|
|
|
|
- accessToken: []
|
|
|
|
parameters:
|
|
|
|
parameters:
|
|
|
@ -120,13 +132,6 @@ paths:
|
|
|
|
type: string
|
|
|
|
type: string
|
|
|
|
description: The session identifier given by the identity server.
|
|
|
|
description: The session identifier given by the identity server.
|
|
|
|
required: ["client_secret", "id_server", "id_access_token", "sid"]
|
|
|
|
required: ["client_secret", "id_server", "id_access_token", "sid"]
|
|
|
|
bind:
|
|
|
|
|
|
|
|
type: boolean
|
|
|
|
|
|
|
|
description: |-
|
|
|
|
|
|
|
|
Whether the homeserver should also bind this third party
|
|
|
|
|
|
|
|
identifier to the account's Matrix ID with the passed identity
|
|
|
|
|
|
|
|
server. Default: ``false``.
|
|
|
|
|
|
|
|
x-example: true
|
|
|
|
|
|
|
|
required: ["three_pid_creds"]
|
|
|
|
required: ["three_pid_creds"]
|
|
|
|
example: {
|
|
|
|
example: {
|
|
|
|
"three_pid_creds": {
|
|
|
|
"three_pid_creds": {
|
|
|
@ -134,8 +139,7 @@ paths:
|
|
|
|
"id_access_token": "abc123_OpaqueString",
|
|
|
|
"id_access_token": "abc123_OpaqueString",
|
|
|
|
"sid": "abc123987",
|
|
|
|
"sid": "abc123987",
|
|
|
|
"client_secret": "d0n'tT3ll"
|
|
|
|
"client_secret": "d0n'tT3ll"
|
|
|
|
},
|
|
|
|
}
|
|
|
|
"bind": false
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
responses:
|
|
|
|
responses:
|
|
|
|
200:
|
|
|
|
200:
|
|
|
@ -173,6 +177,111 @@ paths:
|
|
|
|
"$ref": "definitions/errors/error.yaml"
|
|
|
|
"$ref": "definitions/errors/error.yaml"
|
|
|
|
tags:
|
|
|
|
tags:
|
|
|
|
- User data
|
|
|
|
- User data
|
|
|
|
|
|
|
|
"/account/3pid/add":
|
|
|
|
|
|
|
|
post:
|
|
|
|
|
|
|
|
summary: Adds contact information to the user's account.
|
|
|
|
|
|
|
|
description: |-
|
|
|
|
|
|
|
|
This API endpoint uses the `User-Interactive Authentication API`_.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Adds contact information to the user's account. Homeservers should use 3PIDs added
|
|
|
|
|
|
|
|
through this endpoint for password resets instead of relying on the identity server.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Homeservers should prevent the caller from adding a 3PID to their account if it has
|
|
|
|
|
|
|
|
already been added to another user's account on the homeserver.
|
|
|
|
|
|
|
|
operationId: add3PID
|
|
|
|
|
|
|
|
security:
|
|
|
|
|
|
|
|
- accessToken: []
|
|
|
|
|
|
|
|
parameters:
|
|
|
|
|
|
|
|
- in: body
|
|
|
|
|
|
|
|
name: body
|
|
|
|
|
|
|
|
schema:
|
|
|
|
|
|
|
|
type: object
|
|
|
|
|
|
|
|
properties:
|
|
|
|
|
|
|
|
auth:
|
|
|
|
|
|
|
|
description: |-
|
|
|
|
|
|
|
|
Additional authentication information for the
|
|
|
|
|
|
|
|
user-interactive authentication API.
|
|
|
|
|
|
|
|
$ref: "definitions/auth_data.yaml"
|
|
|
|
|
|
|
|
client_secret:
|
|
|
|
|
|
|
|
type: string
|
|
|
|
|
|
|
|
description: The client secret used in the session with the homeserver.
|
|
|
|
|
|
|
|
sid:
|
|
|
|
|
|
|
|
type: string
|
|
|
|
|
|
|
|
description: The session identifier given by the homeserver.
|
|
|
|
|
|
|
|
required: ["client_secret", "sid"]
|
|
|
|
|
|
|
|
example: {
|
|
|
|
|
|
|
|
"sid": "abc123987",
|
|
|
|
|
|
|
|
"client_secret": "d0n'tT3ll"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
responses:
|
|
|
|
|
|
|
|
200:
|
|
|
|
|
|
|
|
description: The addition was successful.
|
|
|
|
|
|
|
|
examples:
|
|
|
|
|
|
|
|
application/json: {}
|
|
|
|
|
|
|
|
schema:
|
|
|
|
|
|
|
|
type: object
|
|
|
|
|
|
|
|
401:
|
|
|
|
|
|
|
|
description: |-
|
|
|
|
|
|
|
|
The homeserver requires additional authentication information.
|
|
|
|
|
|
|
|
schema:
|
|
|
|
|
|
|
|
"$ref": "definitions/auth_response.yaml"
|
|
|
|
|
|
|
|
429:
|
|
|
|
|
|
|
|
description: This request was rate-limited.
|
|
|
|
|
|
|
|
schema:
|
|
|
|
|
|
|
|
"$ref": "definitions/errors/rate_limited.yaml"
|
|
|
|
|
|
|
|
"/account/3pid/bind":
|
|
|
|
|
|
|
|
post:
|
|
|
|
|
|
|
|
summary: Binds a 3PID to the user's account through an Identity Service.
|
|
|
|
|
|
|
|
description: |-
|
|
|
|
|
|
|
|
Binds a 3PID to the user's account through the specified identity server.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Homeservers should not prevent this request from succeeding if another user
|
|
|
|
|
|
|
|
has bound the 3PID. Homeservers should simply proxy any errors received by
|
|
|
|
|
|
|
|
the identity server to the caller.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Homeservers should track successful binds so they can be unbound later.
|
|
|
|
|
|
|
|
operationId: bind3PID
|
|
|
|
|
|
|
|
security:
|
|
|
|
|
|
|
|
- accessToken: []
|
|
|
|
|
|
|
|
parameters:
|
|
|
|
|
|
|
|
- in: body
|
|
|
|
|
|
|
|
name: body
|
|
|
|
|
|
|
|
schema:
|
|
|
|
|
|
|
|
type: object
|
|
|
|
|
|
|
|
properties:
|
|
|
|
|
|
|
|
client_secret:
|
|
|
|
|
|
|
|
type: string
|
|
|
|
|
|
|
|
description: The client secret used in the session with the identity server.
|
|
|
|
|
|
|
|
id_server:
|
|
|
|
|
|
|
|
type: string
|
|
|
|
|
|
|
|
description: The identity server to use.
|
|
|
|
|
|
|
|
id_access_token:
|
|
|
|
|
|
|
|
type: string
|
|
|
|
|
|
|
|
description: |-
|
|
|
|
|
|
|
|
An access token previously registered with the identity server.
|
|
|
|
|
|
|
|
sid:
|
|
|
|
|
|
|
|
type: string
|
|
|
|
|
|
|
|
description: The session identifier given by the identity server.
|
|
|
|
|
|
|
|
required: ["client_secret", "id_server", "id_access_token", "sid"]
|
|
|
|
|
|
|
|
example: {
|
|
|
|
|
|
|
|
"id_server": "example.org",
|
|
|
|
|
|
|
|
"id_access_token": "abc123_OpaqueString",
|
|
|
|
|
|
|
|
"sid": "abc123987",
|
|
|
|
|
|
|
|
"client_secret": "d0n'tT3ll"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
responses:
|
|
|
|
|
|
|
|
200:
|
|
|
|
|
|
|
|
description: The addition was successful.
|
|
|
|
|
|
|
|
examples:
|
|
|
|
|
|
|
|
application/json: {}
|
|
|
|
|
|
|
|
schema:
|
|
|
|
|
|
|
|
type: object
|
|
|
|
|
|
|
|
429:
|
|
|
|
|
|
|
|
description: This request was rate-limited.
|
|
|
|
|
|
|
|
schema:
|
|
|
|
|
|
|
|
"$ref": "definitions/errors/rate_limited.yaml"
|
|
|
|
|
|
|
|
tags:
|
|
|
|
|
|
|
|
- User data
|
|
|
|
"/account/3pid/delete":
|
|
|
|
"/account/3pid/delete":
|
|
|
|
post:
|
|
|
|
post:
|
|
|
|
summary: Deletes a third party identifier from the user's account
|
|
|
|
summary: Deletes a third party identifier from the user's account
|
|
|
@ -308,12 +417,9 @@ paths:
|
|
|
|
already associated with an account on this homeserver. This API should
|
|
|
|
already associated with an account on this homeserver. This API should
|
|
|
|
be used to request validation tokens when adding an email address to an
|
|
|
|
be used to request validation tokens when adding an email address to an
|
|
|
|
account. This API's parameters and response are identical to that of
|
|
|
|
account. This API's parameters and response are identical to that of
|
|
|
|
the |/register/email/requestToken|_ endpoint. The homeserver has the
|
|
|
|
the |/register/email/requestToken|_ endpoint. The homeserver should validate
|
|
|
|
choice of validating the email address itself, or proxying the request
|
|
|
|
the email itself, either by sending a validation email itself or by using
|
|
|
|
to the ``/validate/email/requestToken`` Identity Service API as
|
|
|
|
a service it has control over.
|
|
|
|
identified by ``id_server``. It is imperative that the
|
|
|
|
|
|
|
|
homeserver keep a list of trusted Identity Servers and only proxies to
|
|
|
|
|
|
|
|
those that it trusts.
|
|
|
|
|
|
|
|
operationId: requestTokenTo3PIDEmail
|
|
|
|
operationId: requestTokenTo3PIDEmail
|
|
|
|
parameters:
|
|
|
|
parameters:
|
|
|
|
- in: body
|
|
|
|
- in: body
|
|
|
@ -361,12 +467,9 @@ paths:
|
|
|
|
already associated with an account on this homeserver. This API should
|
|
|
|
already associated with an account on this homeserver. This API should
|
|
|
|
be used to request validation tokens when adding a phone number to an
|
|
|
|
be used to request validation tokens when adding a phone number to an
|
|
|
|
account. This API's parameters and response are identical to that of
|
|
|
|
account. This API's parameters and response are identical to that of
|
|
|
|
the |/register/msisdn/requestToken|_ endpoint. The homeserver has the
|
|
|
|
the |/register/msisdn/requestToken|_ endpoint. The homeserver should validate
|
|
|
|
choice of validating the phone number itself, or proxying the request
|
|
|
|
the phone number itself, either by sending a validation message itself or by using
|
|
|
|
to the ``/validate/msisdn/requestToken`` Identity Service API as
|
|
|
|
a service it has control over.
|
|
|
|
identified by ``id_server``. It is imperative that the
|
|
|
|
|
|
|
|
homeserver keep a list of trusted Identity Servers and only proxies to
|
|
|
|
|
|
|
|
those that it trusts.
|
|
|
|
|
|
|
|
operationId: requestTokenTo3PIDMSISDN
|
|
|
|
operationId: requestTokenTo3PIDMSISDN
|
|
|
|
parameters:
|
|
|
|
parameters:
|
|
|
|
- in: body
|
|
|
|
- in: body
|
|
|
|