我們即將停用內部部署 API。請參閱我們的內部部署 API 停用文件以取得詳細資訊,並瞭解如何轉移到我們的新一代雲端 API。
/v1/settings/profile/about
Use this edge to manage your profile's About section.
You must use the admin account to access the profile settings.
You can view your profile's About section in the following ways:
/v1/settings/profile/about
endpoint to retrieve the text displayed in your profile's About section.GET /v1/settings/profile/about
A successful response contains the profile
object with the text
parameter containing your profile's About content.
{ "settings": { "profile": { "about": { "text": "your-profile-about-text" } } } }
Use to update your profile's About section. Send the text for your profile's About section in the text
field of an API call to the /v1/settings/profile/about
endpoint.
PATCH /v1/settings/profile/about { "text": "your-profile-about-text" }
A successful request returns the HTTP Status Code 200 OK
and either null
or {}
.
If you encounter any errors, see Error and Status Messages.
Name | Description |
---|---|
type: String | Text to display in your profile's About section |