mirror of
https://github.com/matrix-org/matrix-spec
synced 2025-12-23 17:48:37 +01:00
HS' can send 3PID token. Add a new submit_url field
This commit is contained in:
parent
9ac89cc915
commit
3148184052
|
|
@ -132,11 +132,30 @@ paths:
|
||||||
}
|
}
|
||||||
responses:
|
responses:
|
||||||
200:
|
200:
|
||||||
description: The addition was successful.
|
description: |-
|
||||||
|
The addition was successful.
|
||||||
|
|
||||||
|
``submit_url`` is an optional field containing a URL where the
|
||||||
|
client must submit a validation token to, with identical parameters
|
||||||
|
to the Identity Service API's ``/validate/email/submitToken``
|
||||||
|
endpoint. The homeserver will send this token to the user, which
|
||||||
|
should then be prompted to provide it to the client.
|
||||||
|
|
||||||
|
If this field is not present, the client can assume that
|
||||||
|
verification will happen without the client's involvement.
|
||||||
examples:
|
examples:
|
||||||
application/json: {}
|
application/json: {
|
||||||
|
"submit_url": "https://example.org/path/to/submitToken"
|
||||||
|
}
|
||||||
schema:
|
schema:
|
||||||
type: object
|
type: object
|
||||||
|
properties:
|
||||||
|
submit_url:
|
||||||
|
type: string
|
||||||
|
description: |-
|
||||||
|
An optional URL to submit information to to verify a
|
||||||
|
third-party identifier.
|
||||||
|
example: "https://example.org/path/to/submitToken"
|
||||||
403:
|
403:
|
||||||
description: The credentials could not be verified with the identity server.
|
description: The credentials could not be verified with the identity server.
|
||||||
examples:
|
examples:
|
||||||
|
|
@ -187,12 +206,14 @@ paths:
|
||||||
post:
|
post:
|
||||||
summary: Begins the validation process for an email address for association with the user's account.
|
summary: Begins the validation process for an email address for association with the user's account.
|
||||||
description: |-
|
description: |-
|
||||||
Proxies the Identity Service API ``validate/email/requestToken``, but
|
The homeserver should check that the given email address is **not**
|
||||||
first checks that the given email address is **not** already associated
|
already associated with an account on this homeserver. This API should
|
||||||
with an account on this homeserver. This API should be used to request
|
be used to request validation tokens when adding an email address to an
|
||||||
validation tokens when adding an email address to an account. This API's
|
account. This API's parameters and response are identical to that of
|
||||||
parameters and response are identical to that of the |/register/email/requestToken|_
|
the |/register/email/requestToken|_ endpoint. The homeserver has the
|
||||||
endpoint.
|
choice of validating the email address itself, or proxying the request
|
||||||
|
to the ``validate/email/requestToken`` Identity Server API on the
|
||||||
|
server sent in ``id_server``.
|
||||||
operationId: requestTokenTo3PIDEmail
|
operationId: requestTokenTo3PIDEmail
|
||||||
parameters:
|
parameters:
|
||||||
- in: body
|
- in: body
|
||||||
|
|
@ -212,9 +233,38 @@ paths:
|
||||||
required: ['id_server']
|
required: ['id_server']
|
||||||
responses:
|
responses:
|
||||||
200:
|
200:
|
||||||
description: An email was sent to the given address.
|
description: |-
|
||||||
|
An email was sent to the given address.
|
||||||
|
Note that this may be an email containing the validation token or
|
||||||
|
it may be informing the user of an error.
|
||||||
|
|
||||||
|
``submit_url`` is an optional field containing a URL where the
|
||||||
|
client must submit a validation token to, with identical parameters
|
||||||
|
to the Identity Service API's ``/validate/email/submitToken``
|
||||||
|
endpoint. The homeserver will send this token to the user, which
|
||||||
|
should then be prompted to provide it to the client.
|
||||||
|
|
||||||
|
If this field is not present, the client can assume that
|
||||||
|
verification will happen without the client's involvement.
|
||||||
schema:
|
schema:
|
||||||
$ref: "../identity/definitions/sid.yaml"
|
allOf:
|
||||||
|
- $ref: "../identity/definitions/sid.yaml"
|
||||||
|
- type: object
|
||||||
|
properties:
|
||||||
|
submit_url:
|
||||||
|
type: string
|
||||||
|
description: |-
|
||||||
|
An optional field containing a URL where the client
|
||||||
|
must submit a validation token to, with identical
|
||||||
|
parameters to the Identity Service API's
|
||||||
|
``/validate/email/submitToken`` endpoint. The homeserver
|
||||||
|
will send this token to the user, which should then be
|
||||||
|
prompted to provide it to the client.
|
||||||
|
|
||||||
|
If this field is not present, the client can assume that
|
||||||
|
verification will happen without the client's
|
||||||
|
involvement.
|
||||||
|
example: "https://example.org/path/to/submitToken"
|
||||||
403:
|
403:
|
||||||
description: |-
|
description: |-
|
||||||
The homeserver does not allow the third party identifier as a
|
The homeserver does not allow the third party identifier as a
|
||||||
|
|
@ -241,12 +291,14 @@ paths:
|
||||||
post:
|
post:
|
||||||
summary: Begins the validation process for a phone number for association with the user's account.
|
summary: Begins the validation process for a phone number for association with the user's account.
|
||||||
description: |-
|
description: |-
|
||||||
Proxies the Identity Service API ``validate/msisdn/requestToken``, but
|
The homeserver should check that the given phone number is **not**
|
||||||
first checks that the given phone number is **not** already associated
|
already associated with an account on this homeserver. This API should
|
||||||
with an account on this homeserver. This API should be used to request
|
be used to request validation tokens when adding a phone number to an
|
||||||
validation tokens when adding a phone number to an account. This API's
|
account. This API's parameters and response are identical to that of
|
||||||
parameters and response are identical to that of the |/register/msisdn/requestToken|_
|
the |/register/msisdn/requestToken|_ endpoint. The homeserver has the
|
||||||
endpoint.
|
choice of validating the phone number itself, or proxying the request
|
||||||
|
to the ``validate/msisdn/requestToken`` Identity Server API on the
|
||||||
|
server sent in ``id_server``.
|
||||||
operationId: requestTokenTo3PIDMSISDN
|
operationId: requestTokenTo3PIDMSISDN
|
||||||
parameters:
|
parameters:
|
||||||
- in: body
|
- in: body
|
||||||
|
|
@ -266,9 +318,37 @@ paths:
|
||||||
required: ['id_server']
|
required: ['id_server']
|
||||||
responses:
|
responses:
|
||||||
200:
|
200:
|
||||||
description: An SMS message was sent to the given phone number.
|
description: |-
|
||||||
|
An SMS message was sent to the given phone number.
|
||||||
|
|
||||||
|
``submit_url`` is an optional field containing a URL where the
|
||||||
|
client must submit a validation token to, with identical parameters
|
||||||
|
to the Identity Service API's ``/validate/msisdn/submitToken``
|
||||||
|
endpoint. The homeserver will send this token to the user, which
|
||||||
|
should then be prompted to provide it to the client.
|
||||||
|
|
||||||
|
If this field is not present, the client can assume that
|
||||||
|
verification will happen without the client's involvement.
|
||||||
schema:
|
schema:
|
||||||
$ref: "../identity/definitions/sid.yaml"
|
allOf:
|
||||||
|
- $ref: "../identity/definitions/sid.yaml"
|
||||||
|
- type: object
|
||||||
|
properties:
|
||||||
|
submit_url:
|
||||||
|
type: string
|
||||||
|
description: |-
|
||||||
|
An optional field containing a URL where the client
|
||||||
|
must submit a validation token to, with identical
|
||||||
|
parameters to the Identity Service API's
|
||||||
|
``/validate/email/submitToken`` endpoint. The homeserver
|
||||||
|
will send this token to the user, which should then be
|
||||||
|
prompted to provide it to the client.
|
||||||
|
|
||||||
|
If this field is not present, the client can assume that
|
||||||
|
verification will happen without the client's
|
||||||
|
involvement.
|
||||||
|
example: "https://example.org/path/to/submitToken"
|
||||||
|
|
||||||
403:
|
403:
|
||||||
description: |-
|
description: |-
|
||||||
The homeserver does not allow the third party identifier as a
|
The homeserver does not allow the third party identifier as a
|
||||||
|
|
|
||||||
|
|
@ -204,10 +204,11 @@ paths:
|
||||||
post:
|
post:
|
||||||
summary: Begins the validation process for an email to be used during registration.
|
summary: Begins the validation process for an email to be used during registration.
|
||||||
description: |-
|
description: |-
|
||||||
Proxies the Identity Service API ``validate/email/requestToken``, but
|
The homeserver should check that the given email address is **not**
|
||||||
first checks that the given email address is not already associated
|
already associated with an account on this homeserver. The homeserver
|
||||||
with an account on this homeserver. See the Identity Service API for
|
has the choice of validating the email address itself, or proxying the
|
||||||
further information.
|
request to the ``validate/email/requestToken`` Identity Server API on
|
||||||
|
the server sent in ``id_server``.
|
||||||
operationId: requestTokenToRegisterEmail
|
operationId: requestTokenToRegisterEmail
|
||||||
parameters:
|
parameters:
|
||||||
- in: body
|
- in: body
|
||||||
|
|
@ -231,8 +232,34 @@ paths:
|
||||||
An email has been sent to the specified address.
|
An email has been sent to the specified address.
|
||||||
Note that this may be an email containing the validation token or it may be informing
|
Note that this may be an email containing the validation token or it may be informing
|
||||||
the user of an error.
|
the user of an error.
|
||||||
|
|
||||||
|
``submit_url`` is an optional field containing a URL where the
|
||||||
|
client must submit a validation token to, with identical parameters
|
||||||
|
to the Identity Service API's ``/validate/email/submitToken``
|
||||||
|
endpoint. The homeserver will send this token to the user, which
|
||||||
|
should then be prompted to provide it to the client.
|
||||||
|
|
||||||
|
If this field is not present, the client can assume that
|
||||||
|
verification will happen without the client's involvement.
|
||||||
schema:
|
schema:
|
||||||
$ref: "../identity/definitions/sid.yaml"
|
allOf:
|
||||||
|
- $ref: "../identity/definitions/sid.yaml"
|
||||||
|
- type: object
|
||||||
|
properties:
|
||||||
|
submit_url:
|
||||||
|
type: string
|
||||||
|
description: |-
|
||||||
|
An optional field containing a URL where the client
|
||||||
|
must submit a validation token to, with identical
|
||||||
|
parameters to the Identity Service API's
|
||||||
|
``/validate/email/submitToken`` endpoint. The homeserver
|
||||||
|
will send this token to the user, which should then be
|
||||||
|
prompted to provide it to the client.
|
||||||
|
|
||||||
|
If this field is not present, the client can assume that
|
||||||
|
verification will happen without the client's
|
||||||
|
involvement.
|
||||||
|
example: "https://example.org/path/to/submitToken"
|
||||||
403:
|
403:
|
||||||
description: The homeserver does not permit the address to be bound.
|
description: The homeserver does not permit the address to be bound.
|
||||||
schema:
|
schema:
|
||||||
|
|
@ -264,10 +291,11 @@ paths:
|
||||||
post:
|
post:
|
||||||
summary: Requests a validation token be sent to the given phone number for the purpose of registering an account
|
summary: Requests a validation token be sent to the given phone number for the purpose of registering an account
|
||||||
description: |-
|
description: |-
|
||||||
Proxies the Identity Service API ``validate/msisdn/requestToken``, but
|
The homeserver should check that the given phone number is **not**
|
||||||
first checks that the given phone number is not already associated
|
already associated with an account on this homeserver. The homeserver
|
||||||
with an account on this homeserver. See the Identity Service API for
|
has the choice of validating the phone number itself, or proxying the
|
||||||
further information.
|
request to the ``validate/msisdn/requestToken`` Identity Server API on
|
||||||
|
the server sent in ``id_server``.
|
||||||
operationId: requestTokenToRegisterMSISDN
|
operationId: requestTokenToRegisterMSISDN
|
||||||
parameters:
|
parameters:
|
||||||
- in: body
|
- in: body
|
||||||
|
|
@ -291,8 +319,34 @@ paths:
|
||||||
An SMS message has been sent to the specified phone number.
|
An SMS message has been sent to the specified phone number.
|
||||||
Note that this may be an SMS message containing the validation token or it may be informing
|
Note that this may be an SMS message containing the validation token or it may be informing
|
||||||
the user of an error.
|
the user of an error.
|
||||||
|
|
||||||
|
``submit_url`` is an optional field containing a URL where the
|
||||||
|
client must submit a validation token to, with identical parameters
|
||||||
|
to the Identity Service API's ``/validate/msisdn/submitToken``
|
||||||
|
endpoint. The homeserver will send this token to the user, which
|
||||||
|
should then be prompted to provide it to the client.
|
||||||
|
|
||||||
|
If this field is not present, the client can assume that
|
||||||
|
verification will happen without the client's involvement.
|
||||||
schema:
|
schema:
|
||||||
$ref: "../identity/definitions/sid.yaml"
|
allOf:
|
||||||
|
- $ref: "../identity/definitions/sid.yaml"
|
||||||
|
- type: object
|
||||||
|
properties:
|
||||||
|
submit_url:
|
||||||
|
type: string
|
||||||
|
description: |-
|
||||||
|
An optional field containing a URL where the client
|
||||||
|
must submit a validation token to, with identical
|
||||||
|
parameters to the Identity Service API's
|
||||||
|
``/validate/email/submitToken`` endpoint. The homeserver
|
||||||
|
will send this token to the user, which should then be
|
||||||
|
prompted to provide it to the client.
|
||||||
|
|
||||||
|
If this field is not present, the client can assume that
|
||||||
|
verification will happen without the client's
|
||||||
|
involvement.
|
||||||
|
example: "https://example.org/path/to/submitToken"
|
||||||
403:
|
403:
|
||||||
description: The homeserver does not permit the address to be bound.
|
description: The homeserver does not permit the address to be bound.
|
||||||
schema:
|
schema:
|
||||||
|
|
@ -377,16 +431,21 @@ paths:
|
||||||
post:
|
post:
|
||||||
summary: Requests a validation token be sent to the given email address for the purpose of resetting a user's password
|
summary: Requests a validation token be sent to the given email address for the purpose of resetting a user's password
|
||||||
description: |-
|
description: |-
|
||||||
Proxies the Identity Service API ``validate/email/requestToken``, but
|
The homeserver should check that the given email address **is
|
||||||
first checks that the given email address **is** associated with an account
|
associated** with an account on this homeserver. This API should be
|
||||||
on this homeserver. This API should be used to request
|
used to request validation tokens when authenticating for the
|
||||||
validation tokens when authenticating for the
|
``account/password`` endpoint.
|
||||||
`account/password` endpoint. This API's parameters and response are
|
|
||||||
identical to that of the HS API |/register/email/requestToken|_ except that
|
This API's parameters and response are identical to that of the HS API
|
||||||
`M_THREEPID_NOT_FOUND` may be returned if no account matching the
|
|/register/email/requestToken|_ except that ``M_THREEPID_NOT_FOUND``
|
||||||
given email address could be found. The server may instead send an
|
may be returned if no account matching the given email address could be
|
||||||
email to the given address prompting the user to create an account.
|
found. The server may instead send an email to the given address
|
||||||
`M_THREEPID_IN_USE` may not be returned.
|
prompting the user to create an account. ``M_THREEPID_IN_USE`` may not
|
||||||
|
be returned.
|
||||||
|
|
||||||
|
The homeserver has the choice of validating the email address itself,
|
||||||
|
or proxying the request to the ``validate/email/requestToken`` Identity
|
||||||
|
server api on the server sent in ``id_server``.
|
||||||
|
|
||||||
.. |/register/email/requestToken| replace:: ``/register/email/requestToken``
|
.. |/register/email/requestToken| replace:: ``/register/email/requestToken``
|
||||||
|
|
||||||
|
|
@ -412,7 +471,24 @@ paths:
|
||||||
200:
|
200:
|
||||||
description: An email was sent to the given address.
|
description: An email was sent to the given address.
|
||||||
schema:
|
schema:
|
||||||
$ref: "../identity/definitions/sid.yaml"
|
allOf:
|
||||||
|
- $ref: "../identity/definitions/sid.yaml"
|
||||||
|
- type: object
|
||||||
|
properties:
|
||||||
|
submit_url:
|
||||||
|
type: string
|
||||||
|
description: |-
|
||||||
|
An optional field containing a URL where the client must
|
||||||
|
submit a validation token to, with identical parameters
|
||||||
|
to the Identity Service API's
|
||||||
|
``/validate/email/submitToken`` endpoint. The homeserver
|
||||||
|
will send this token to the user, which should then be
|
||||||
|
prompted to provide it to the client.
|
||||||
|
|
||||||
|
If this field is not present, the client can assume that
|
||||||
|
verification will happen without the client's
|
||||||
|
involvement.
|
||||||
|
example: "https://example.org/path/to/submitToken"
|
||||||
403:
|
403:
|
||||||
description: |-
|
description: |-
|
||||||
The homeserver does not allow the third party identifier as a
|
The homeserver does not allow the third party identifier as a
|
||||||
|
|
@ -439,16 +515,21 @@ paths:
|
||||||
post:
|
post:
|
||||||
summary: Requests a validation token be sent to the given phone number for the purpose of resetting a user's password.
|
summary: Requests a validation token be sent to the given phone number for the purpose of resetting a user's password.
|
||||||
description: |-
|
description: |-
|
||||||
Proxies the Identity Service API ``validate/msisdn/requestToken``, but
|
The homeserver should check that the given phone number **is
|
||||||
first checks that the given phone number **is** associated with an account
|
associated** with an account on this homeserver. This API should be
|
||||||
on this homeserver. This API should be used to request
|
used to request validation tokens when authenticating for the
|
||||||
validation tokens when authenticating for the
|
``account/password`` endpoint.
|
||||||
`account/password` endpoint. This API's parameters and response are
|
|
||||||
identical to that of the HS API |/register/msisdn/requestToken|_ except that
|
This API's parameters and response are identical to that of the HS API
|
||||||
`M_THREEPID_NOT_FOUND` may be returned if no account matching the
|
|/register/msisdn/requestToken|_ except that ``M_THREEPID_NOT_FOUND`` may
|
||||||
given phone number could be found. The server may instead send an
|
be returned if no account matching the given phone number could be
|
||||||
SMS message to the given address prompting the user to create an account.
|
found. The server may instead send the SMS to the given phone number
|
||||||
`M_THREEPID_IN_USE` may not be returned.
|
prompting the user to create an account. ``M_THREEPID_IN_USE`` may not
|
||||||
|
be returned.
|
||||||
|
|
||||||
|
The homeserver has the choice of validating the phone number itself, or
|
||||||
|
proxying the request to the ``validate/msisdn/requestToken`` Identity
|
||||||
|
server api on the server sent in ``id_server``.
|
||||||
|
|
||||||
.. |/register/msisdn/requestToken| replace:: ``/register/msisdn/requestToken``
|
.. |/register/msisdn/requestToken| replace:: ``/register/msisdn/requestToken``
|
||||||
|
|
||||||
|
|
@ -474,7 +555,24 @@ paths:
|
||||||
200:
|
200:
|
||||||
description: An SMS message was sent to the given phone number.
|
description: An SMS message was sent to the given phone number.
|
||||||
schema:
|
schema:
|
||||||
$ref: "../identity/definitions/sid.yaml"
|
allOf:
|
||||||
|
- $ref: "../identity/definitions/sid.yaml"
|
||||||
|
- type: object
|
||||||
|
properties:
|
||||||
|
submit_url:
|
||||||
|
type: string
|
||||||
|
description: |-
|
||||||
|
An optional field containing a URL where the client must
|
||||||
|
submit a validation token to, with identical parameters
|
||||||
|
to the Identity Service API's
|
||||||
|
``/validate/msisdn/submitToken`` endpoint. The homeserver
|
||||||
|
will send this token to the user, which should then be
|
||||||
|
prompted to provide it to the client.
|
||||||
|
|
||||||
|
If this field is not present, the client can assume that
|
||||||
|
verification will happen without the client's
|
||||||
|
involvement.
|
||||||
|
example: "https://example.org/path/to/submitToken"
|
||||||
403:
|
403:
|
||||||
description: |-
|
description: |-
|
||||||
The homeserver does not allow the third party identifier as a
|
The homeserver does not allow the third party identifier as a
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue