Main menu
Introduction

Accounts

Update contact info

Money Movement

Disclosures

Banking Images

Authentication

Alerts

Legacy Authentication

Reset Password

E-Statements

Experience Group

Banking

Customer Information

E-Statement Reports

.png)
Update group
ENDPOINTS
put
/v3/groups/{groupId}
Header parameters
Collapse
Expand
transactionId
string
required
An ID that identifies this request. A unique identifier should be generated for each request made.
Body parameters
Collapse
Expand
Query parameters
Collapse
Expand
Path parameters
Collapse
Expand
groupId
string
required
An unique ID that identifies user group.
Responses
Collapse
Expand
200
OK
Response Body
- { …
- "groupDescription" : "string",
- "groupExperience" : { …,
- "default" : true,
- "experienceId" : "string",
- "experienceName" : "string",
- "groupId" : "string"
- "groupExperienceName" : "string",
- "groupId" : "string",
- "groupLastUpdatedDateTime" : "string",
- "groupName" : "string",
- "groupParticipantCount" : 0,
- "groupPlatform" : "RETAIL_BANKING",
- "groupStatus" : "ACTIVE",
- "groupType" : "EXPERIENCE_GROUP"
400
Bad Request
Response Body
- { …
- "code" : "string",
- "message" : "string"
401
Unauthorized
Response Body
- { …
- "code" : "2003",
- "message" : "Invalid Authorization"
500
Internal Server Error
Response Body
- { …
- "code" : "2001",
- "message" : "Internal Server Error"
curl -X 'PUT' \
'https://api.candescent.com/digitalbanking/groups/v3/groups/{groupId}' \
-H 'accept: application/json' \
-H 'content-type: application/json' \
-d '{
"groupId": "482cf7f8-3e59-4ccf-a996-97c79fd50cb1",
"groupName": "updated group name",
"groupDescription": "updated description - will be deleted if not included"
}';
{
"groupId": "string",
"groupName": "string",
"groupDescription": "string",
"groupType": "EXPERIENCE_GROUP",
"groupPlatform": "RETAIL_BANKING",
"groupLastUpdatedDateTime": "string",
"groupParticipantCount": 0,
"groupExperience": {
"experienceName": "string",
"experienceId": "string",
"groupId": "string",
"default": true
},
"groupExperienceName": "string",
"groupStatus": "ACTIVE"
}
{
"code": "string",
"message": "string"
}
{
"code": "2003",
"message": "Invalid Authorization"
}
{
"code": "2001",
"message": "Internal Server Error"
}