v1

latestOpenAPI 3.0.02026-07-242035712.0 MB
Apata

Update Challenge Profile

This API provides the ability to update challenge profile.It's a Pass through API that internally calls Apata API

post/pws/pws_update_challenge_profile/

Request body

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

idstring required

Unique identifier for the challenge profile.

user_idstring

User Id of the Customer who triggered the API request.

remarksstring

Remarks for API request

namestring

Display name for the Challenge Profile.

descriptionstring

Optional description for the Challenge Profile.

Example request

{
  "api_call_unique_identifier": "438574845790657485",
  "client_id": 760131,
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "name": "My Challenge Profile",
  "description": "string",
  "properties": {
    "challenge_interface_id": "cf3604c5-29dc-4cb3-a4c0-403981d3a6f0",
    "options": [
      {
        "alias": "string",
        "challenge_method_ids": [
          "497f6eca-6276-4993-bfeb-53cbbbba6f08"
        ]
      }
    ]
  }
}

Response

Successful Response

Example response

{
  "header": {
    "error_desc": "success"
  },
  "body": {
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "name": "My Challenge Profile",
    "description": "string",
    "type": "V1",
    "alias": "string",
    "properties": {
      "choiceChallengeInterfaceId": "cf3604c5-29dc-4cb3-a4c0-403981d3a6f0",
      "options": [
        {
          "alias": "string",
          "challengeMethodIds": [
            "497f6eca-6276-4993-bfeb-53cbbbba6f08"
          ]
        }
      ]
    }
  }
}