cURL
curl --request POST \
  --url https://sigmaprod.sabipay.com/api/v1/transaction-monitoring/customers/device \
  --header 'Content-Type: application/json' \
  --header 'apiKey: <api-key>' \
  --header 'apiSecret: <api-key>' \
  --data '{
  "device": {
    "deviceId": "<string>",
    "manufacturer": "<string>",
    "model": "<string>",
    "name": "<string>",
    "osName": "<string>",
    "osVersion": "<string>"
  },
  "customerId": "<string>"
}'
{
  "message": "Device saved successfully"
}

Authorizations

apiKey
string
header
required
apiSecret
string
header
required

Body

application/json

Save users device for transaction monitoring

device
object
required

Details of the user's device.

customerId
string
required

The unique identifier for the customer associated with the device.

Response

Transaction monitoring result

message
string

Message after sevice is saved

Example:

"Device saved successfully"