fix: allow single parameter in org unique request (#3620)

This commit is contained in:
Livio Amstutz
2022-05-13 11:25:45 +02:00
committed by GitHub
parent a9f82529ab
commit f70990709b
3 changed files with 9 additions and 6 deletions

View File

@@ -2403,12 +2403,13 @@ This is an empty response
### IsOrgUniqueRequest
if name or domain is already in use, org is not unique
at least one argument has to be provided
| Field | Type | Description | Validation |
| ----- | ---- | ----------- | ----------- |
| name | string | - | string.min_len: 1<br /> string.max_len: 200<br /> |
| domain | string | - | string.min_len: 1<br /> string.max_len: 200<br /> |
| name | string | - | string.max_len: 200<br /> |
| domain | string | - | string.max_len: 200<br /> |