Update Account Membership Settings
PUT/v2/settings/account-membership
Use this endpoint to update account membership settings.
Request
- application/json
Body
data object
Possible values: [account_membership_setting
]
Specifies the the type of object. Set this value to account_membership_setting
.
The number of accounts an account member can be associated with. You can set this value to any number up to 10,000.
Responses
- 200
- 400
- default
OK
- application/json
- Schema
- Example (from schema)
Schema
data object
Possible values: [account_membership_setting
]
Specifies the the type of object. Set this value to account_membership_setting
.
The number of accounts an account member can be associated with. You can set this value to any number up to 10,000.
{
"data": {
"type": "account_membership_setting",
"membership_limit": 100
}
}
Bad Request
- application/json
- Schema
- Example (from schema)
- bad-request-error
Schema
- Array [
- ]
errors Error[]required
A brief summary of the error.
The HTTP response code of the error.
Optional additional detail about the error.
{
"errors": [
{
"title": "string",
"status": "string",
"detail": "string"
}
]
}
{
"errors": [
{
"title": "Bad Request",
"status": "400",
"detail": "Validation failed: field 'Name' on the 'min' tag."
}
]
}
Internal server error.
- application/json
- Schema
- Example (from schema)
- internal-server-error
Schema
- Array [
- ]
errors Error[]required
A brief summary of the error.
The HTTP response code of the error.
Optional additional detail about the error.
{
"errors": [
{
"title": "string",
"status": "string",
"detail": "string"
}
]
}
{
"errors": [
{
"title": "Internal Server Error",
"status": "500",
"detail": "there was a problem processing your request"
}
]
}