matrix-spec/data/api/client-server/profile.yaml
2025-02-14 13:47:49 +00:00

360 lines
13 KiB
YAML

# Copyright 2016 OpenMarket Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
openapi: 3.1.0
info:
title: Matrix Client-Server Profile API
version: 1.0.0
paths:
"/profile/{userId}/{keyName}":
put:
summary: Set the user's profile field.
description: |-
This API sets or updates a specified profile field in a user's profile. You must have the
appropriate permissions (i.e. an access token) to modify the profile field.
Setting a `null` value SHOULD NOT delete the field. Instead, it retains the key with a `null`
value, unless the server rejects the request due to lack of support for `null` values.
To fully remove a profile field, use the `DELETE` endpoint. Servers may impose an upper limit
on value length, and profile data is subject to a total size limit of 64 KiB.
operationId: setProfileField
security:
- accessTokenQuery: []
- accessTokenBearer: []
parameters:
- in: path
name: userId
description: The user whose profile field to set.
required: true
example: "@alice:example.com"
schema:
type: string
- in: path
name: keyName
description: The profile field key name to set.
required: true
example: "displayname"
schema:
oneOf:
- type: string
enum: ["avatar_url", "displayname"]
- type: string
pattern: '^[a-z][a-z0-9_]*(\.[a-z][a-z0-9_]*)+$'
description: Must follow the
[Common Namespaced Identifier Grammar](/appendices/#common-namespaced-identifier-grammar).
requestBody:
description: >
The new profile field value. The JSON object must contain the `keyName` specified in the URL.
For custom keys, the value may be any valid JSON type. However, if the key is "displayname"
or "avatar_url", the value MUST be a string.
required: true
content:
application/json:
schema:
type: object
properties:
avatar_url:
type: string
description: "Avatar URL value (MXC URI format)."
displayname:
type: string
additionalProperties:
description: "Any additional profile field value; may be any valid JSON type."
example: { "displayname": "Alice Wonderland" }
responses:
"200":
description: The profile field was set.
content:
application/json:
schema:
type: object # empty JSON object
examples:
response:
value: {}
"400":
description: >
The request is malformed, missing a required parameter, contains invalid JSON (for the value),
or specifies an invalid key, or the profile data exceeds allowed limits.
content:
application/json:
schema:
$ref: definitions/errors/error.yaml
examples:
bad_json:
value:
{
"errcode": "M_BAD_JSON",
"error": "Malformed JSON payload.",
}
invalid_key:
value:
{
"errcode": "M_INVALID_PARAM",
"error": "Invalid profile key.",
}
"403":
description: >
The server is unwilling to perform the operation—either due to insufficient permissions
or because profile modifications are disabled.
content:
application/json:
schema:
$ref: definitions/errors/error.yaml
examples:
forbidden:
value:
{
"errcode": "M_FORBIDDEN",
"error": "Profile modification is not permitted.",
}
"429":
description: This request was rate-limited.
content:
application/json:
schema:
$ref: definitions/errors/rate_limited.yaml
tags:
- User data
get:
summary: Get the user's profile field.
description: |-
Get the value of a user's profile field. This API retrieves stabilised fields and custom
profile fields. Profile data is subject to a total size limit of 64 KiB.
operationId: getProfileField
parameters:
- in: path
name: userId
description: The user whose profile field to get.
required: true
example: "@alice:example.com"
schema:
type: string
- in: path
name: keyName
description: The profile field key name to retrieve.
required: true
example: "displayname"
schema:
oneOf:
- type: string
enum: ["avatar_url", "displayname"]
- type: string
pattern: '^[a-z][a-z0-9_]*(\.[a-z][a-z0-9_]*)+$'
description: Must follow the
[Common Namespaced Identifier Grammar](/appendices/#common-namespaced-identifier-grammar).
responses:
"200":
description: The profile field value was retrieved.
content:
application/json:
schema:
type: object
properties:
avatar_url:
type: string
description: "Avatar URL value (MXC URI format)."
displayname:
type: string
additionalProperties:
description: "Any additional profile field value; may be any valid JSON type."
examples:
response:
value: { "displayname": "Alice" }
"403":
x-addedInMatrixVersion: "1.12"
description:
The server is unwilling to disclose whether the user exists and/or
has the specified profile field.
content:
application/json:
schema:
$ref: definitions/errors/error.yaml
examples:
response:
value:
{
"errcode": "M_FORBIDDEN",
"error": "Profile lookup is disabled on this homeserver",
}
"404":
description: There is no profile field with this key for this user, or the user does not exist.
tags:
- User data
delete:
summary: Delete a profile field.
description: |-
Delete the specified profile field from a user's profile. Note that setting a `null` value with the `PUT`
endpoint retains the key with a null value; use this `DELETE` endpoint to fully remove a profile field.
operationId: deleteProfileField
security:
- accessTokenQuery: []
- accessTokenBearer: []
parameters:
- in: path
name: userId
description: The user whose profile field to delete.
required: true
example: "@alice:example.com"
schema:
type: string
- in: path
name: keyName
description: The profile field key name to delete.
required: true
example: "displayname"
schema:
oneOf:
- type: string
enum: ["avatar_url", "displayname"]
- type: string
pattern: '^[a-z][a-z0-9_]*(\.[a-z][a-z0-9_]*)+$'
description: Must follow the
[Common Namespaced Identifier Grammar](/appendices/#common-namespaced-identifier-grammar).
responses:
"200":
description: The profile field was deleted.
content:
application/json:
schema:
type: object
examples:
response:
value: {}
"400":
description: >
The request is malformed, contains invalid JSON, or specifies an invalid key.
content:
application/json:
schema:
$ref: definitions/errors/error.yaml
examples:
bad_json:
value:
{ "errcode": "M_BAD_JSON", "error": "Malformed request." }
invalid_key:
value:
{
"errcode": "M_INVALID_PARAM",
"error": "Invalid profile key.",
}
"403":
description: >
The user is not authorised to delete this profile field.
content:
application/json:
schema:
$ref: definitions/errors/error.yaml
examples:
forbidden:
value:
{
"errcode": "M_FORBIDDEN",
"error": "Profile deletion is not permitted.",
}
"429":
description: This request was rate-limited.
content:
application/json:
schema:
$ref: definitions/errors/rate_limited.yaml
tags:
- User data
"/profile/{userId}":
get:
summary: Get this user's profile information.
description: |-
Retrieve the global profile information for a user. In addition to stabilised fields such as
"avatar_url" and "displayname", this API may include custom profile fields.
The overall profile data is limited to a maximum of 64 KiB.
operationId: getUserProfile
parameters:
- in: path
name: userId
description: The user whose profile information to get.
required: true
example: "@alice:example.com"
schema:
type: string
responses:
"200":
description: The profile information for this user.
content:
application/json:
schema:
type: object
properties:
avatar_url:
type: string
format: uri
description: "Avatar URL value (MXC URI format)."
displayname:
type: string
additionalProperties:
description: "Any additional profile field value; may be any valid JSON type."
examples:
response:
value:
{
"avatar_url": "mxc://matrix.org/SDGdghriugerRg",
"displayname": "Alice Margatroid",
"m.example_field": "custom_value",
}
"403":
x-addedInMatrixVersion: "1.2"
description:
The server is unwilling to disclose whether the user exists and/or
has profile information.
content:
application/json:
schema:
$ref: definitions/errors/error.yaml
examples:
response:
value:
{
"errcode": "M_FORBIDDEN",
"error": "Profile lookup is disabled on this homeserver",
}
"404":
description:
There is no profile information for this user or this user does not
exist.
content:
application/json:
schema:
$ref: definitions/errors/error.yaml
examples:
response:
value:
{ "errcode": "M_NOT_FOUND", "error": "Profile not found" }
tags:
- User data
servers:
- url: "{protocol}://{hostname}{basePath}"
variables:
protocol:
enum:
- http
- https
default: https
hostname:
default: localhost:8008
basePath:
default: /_matrix/client/v3
components:
securitySchemes:
accessTokenQuery:
$ref: definitions/security.yaml#/accessTokenQuery
accessTokenBearer:
$ref: definitions/security.yaml#/accessTokenBearer