v1

latestOpenAPI 3.0.02026-07-242035712.0 MB
Group

Unlink an account from a group

You can use this API to unlink an existing account from one or multiple groups. When an account is unlinked, it is updated immediately, and all the attributes associated with the group container will no longer apply to the account. These attributes will not be analyzed during the authorization flow moving forward.

post/pws/pws_unlink_account_group/

Request body

acc_idinteger required

account id

api_call_unique_identifierstring required

Unique number that must be passed at each API request. Identifier to make each API request unique

client_idinteger required

Unique identifier for the client which Paymentology will provide at outset

group_idstring required

comma separated group Id's.

user_idstring

User Id of the Customer who triggered the API request.

remarksstring

Remarks for API request

Example request

{
  "acc_id": 370769462,
  "api_call_unique_identifier": "438574845790657485",
  "client_id": 760131,
  "group_id": "1267"
}

Response

Successful Response

Example response

{
  "header": {
    "error_desc": "success"
  },
  "body": {
    "message": "account(370769462) unlinked from  group id (2) successfully"
  }
}