5. Update

You can use this service to update the defined limit.

Update Limit Record

PUT{{WalletUrl}}/api/v1/limit

Note: To use this service, it is mandatory to include the apikeypublic and apiclientpublic parameters in the Header field.

WalletAPI Address

The parameters that need to be sent to the service are as follows:

Parameter
Type
Required
Description

apikeypublic

string

Yes

It is the general key information sent for service validation.

apiclientpublic

string

Yes

It is the general key information used for service client validation.

{
  "Id": "{{limitId}}", // Limit'e ait kimlik bilgisi
  "Value": 100000 // Limit değeri
}
{
    "Value": true,
    "Errors": [],
    "IsSuccess": true,
    "IsFailure": false
}

Service Response

Parameter
Type
Description

IsFailure

bool

It returns false if the transaction failed, and true if it was successful.

IsSuccess

bool

It returns true if the transaction was successful, and false if it failed.

Errors

Array

It is an array of error messages encountered during the transaction.

Value

object

It contains the data object returned as part of the service response.

Last updated