Last updated 9 months ago
Was this helpful?
Perform various operations for Symitar parameters.
Symitar eDocs References: Coming soon.
Retrieve the account member group description
The authorization object required for the operation. Only one credential type is required (if multiple are available) as long as it is configured in SymXchange parameters.
{"AdministrativeCredentials":{"Password":"suwn37834b91&"}}
The custom object for NexumAPI request attributes.
{"customFields":{"appId":"glaci"}}
POST /nexum/627/2022.01/parameter/getAcctMembGrpDesc HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 155 { "Credentials": { "AdministrativeCredentials": { "Password": "suwn37834b91&" } }, "AcctMembGrpDescMemberGroup": 1, "nxAttributes": { "customFields": { "appId": "glaci" } } }
Successful operation.
{ "AcctMembGrpDesc": { "Description": "text", "MemberGroup": 1 } }
POST /nexum/627/2022.01/parameter/getAcctMembGrpDescSelectFields HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 279 { "Credentials": { "AdministrativeCredentials": { "Password": "suwn37834b91&" } }, "AcctMembGrpDescMemberGroup": 1, "SelectableFields": { "IncludeAllAcctMembGrpDescFields": true, "AcctMembGrpDescFields": { "Description": true, "MemberGroup": true } }, "nxAttributes": { "customFields": { "appId": "glaci" } } }
Retrieve a paged list of account member group descriptions
POST /nexum/627/2022.01/parameter/getAcctMembGrpDescPagedList HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 218 { "Credentials": { "AdministrativeCredentials": { "Password": "suwn37834b91&" } }, "PagingRequestContext": { "NumberOfRecordsToReturn": 1, "NumberOfRecordsToSkip": 1, "Token": "text" }, "nxAttributes": { "customFields": { "appId": "glaci" } } }
{ "AcctMembGrpDesc": [ { "Description": "text", "MemberGroup": 1 } ], "Token": "text" }
Retrieve the list of account member group descriptions with selectable fields
POST /nexum/627/2022.01/parameter/getAcctMembGrpDescListSelectFields HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 248 { "Credentials": { "AdministrativeCredentials": { "Password": "suwn37834b91&" } }, "SelectableFields": { "IncludeAllAcctMembGrpDescFields": true, "AcctMembGrpDescFields": { "Description": true, "MemberGroup": true } }, "nxAttributes": { "customFields": { "appId": "glaci" } } }
{ "AcctMembGrpDescList": { "hasReachedMaximumListSize": true, "AcctMembGrpDesc": [ { "Description": "text", "MemberGroup": 1 } ] } }
Search account member group description select fields
POST /nexum/627/2022.01/parameter/searchAcctMembGrpDescSelectFields HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 280 { "Credentials": { "AdministrativeCredentials": { "Password": "suwn37834b91&" } }, "SelectableFields": { "IncludeAllAcctMembGrpDescFields": true, "AcctMembGrpDescFields": { "Description": true, "MemberGroup": true } }, "SearchFilter": { "Query": "text" }, "nxAttributes": { "customFields": { "appId": "glaci" } } }
Retrieve a paged list of account member group descriptions with selected fields
POST /nexum/627/2022.01/parameter/getAcctMembGrpDescPagedListSelectFields HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 342 { "Credentials": { "AdministrativeCredentials": { "Password": "suwn37834b91&" } }, "PagingRequestContext": { "NumberOfRecordsToReturn": 1, "NumberOfRecordsToSkip": 1, "Token": "text" }, "SelectableFields": { "IncludeAllAcctMembGrpDescFields": true, "AcctMembGrpDescFields": { "Description": true, "MemberGroup": true } }, "nxAttributes": { "customFields": { "appId": "glaci" } } }
Search account member group description paged select fields
POST /nexum/627/2022.01/parameter/searchAcctMembGrpDescPagedSelectFields HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 357 { "Credentials": { "AdministrativeCredentials": { "Password": "suwn37834b91&" } }, "PagingRequestContext": { "NumberOfRecordsToReturn": 1, "NumberOfRecordsToSkip": 1, "Token": "text" }, "SelectableFields": { "IncludeAllAcctMembGrpDescFields": true, "AcctMembGrpDescFields": { "Description": true, "MemberGroup": true } }, "Query": "text", "nxAttributes": { "customFields": { "appId": "glaci" } } }
Update Account Member Group Description by ID
POST /nexum/627/2022.01/parameter/updateAcctMembGrpDescByID HTTP/1.1 Host: naas.ymcu.libum.io Authorization: Bearer JWT Content-Type: application/json Accept: */* Content-Length: 211 { "Credentials": { "AdministrativeCredentials": { "Password": "suwn37834b91&" } }, "AcctMembGrpDescMemberGroup": 1, "AcctMembGrpDescUpdatableFields": { "Description": "text" }, "nxAttributes": { "customFields": { "appId": "glaci" } } }
{ "UpdateStatus": { "isAllFieldsUpdateSuccess": true, "FailedUpdateStatus": [ { "Record": "text", "ErrorCode": "text", "ErrorMessage": "text", "PrimaryKeyField": [ { "Name": "text", "Value": "text" } ] } ] } }