General Information
...
Name | Source | Mandatory | Type | Special Format | Description | |
---|---|---|---|---|---|---|
gId | Query | YES | String | N/A | The Group ID | |
name | Body | YES | String | N/A | ||
description | Body | YES | String | N/A | ||
Name | Source | Mandatory | Type | Special Format | Description | ||
---|---|---|---|---|---|---|---|
gId | Query | YES | String | N/A | The Group ID | ||
name | Body | YES | String | N/A | |||
description | Body | YES | String | N/A | |||
config | Body | YES | Object | N/A | |||
allowedPackages | YES | Object | N/A | ||||
^([A-Za-z0-9]+)$ | YES | Array of strings | Then keys should follow the pattern : |
...
The key is the product code. |
Output
...
Valid Response
Code Block | ||||
---|---|---|---|---|
| ||||
{ "result": true, "data": true } |
...
Invalid Response
Code Block | ||||
---|---|---|---|---|
| ||||
{ "result":false, "errors":{ "codes":[417], "details":[ { "code":417, "message":"Invalid group id provided" } ] } } |
Error Codes
Code | Description |
---|---|
417 | Invalid group id provided |
418 | Unable to edit Group. |
Example (CURL)
...
Code Block | ||||
---|---|---|---|---|
| ||||
> CURL -X POST http://127.0.0.1:4000/urac/admin/group/edit?gId=5 -d 'name=Gold Group&description=Group Description{ "name": "Silver Group", "description": "grp description", "config": { "allowedPackages": { "prod": "pack" } } }' |
Response
Code Block | ||||
---|---|---|---|---|
| ||||
{ "result": true, "data": true } |
...