Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

General Information


ServiceAPIMethod
urac/admin/group/editPOST


Data Model: Groups

Workflow: Edit Group Flow

Input


NameSourceMandatoryTypeSpecial FormatDescription
gIdQueryYESStringN/AThe Group ID
nameBodyYESStringN/A 
descriptionBodyYESStringN/A 

 

Output


Valid Response

Valid Response Sample
{
	"result": true,
	"data": true
}

 

Invalid Response

Error Response Sample
{
    "result":false,
    "errors":{
        "codes":[417],
        "details":[
            {
                "code":417,
                "message":"Invalid group id provided"
            }
        ]
    }
}



Error Codes


 

Code
Description
417Invalid group id provided
418Unable to edit Group.


Example (CURL)


Request

Calling Edit Group API
 > CURL -X POST http://127.0.0.1:4000/urac/admin/group/edit?gId=5 -d 'name=Gold Group&description=Group Description'

Response

Edit Group API response
{
	"result": true,
	"data": true
}
  • No labels