POST
/
api
/
niobi-verify
curl --request POST \
  --url https://users.niobi.co/api/niobi-verify \
  --header 'Content-Type: application/json' \
  --data '{
  "client_id": "K1PoY1WYricSpXh6Wm24txxxxxxxxxx",
  "sender": "First Integration",
  "timestamp": 1709291964,
  "salt": "salt00494",
  "signature": "x21120d4ca274ce462e6415e571xxxxx1b87f462a802221595ed870bf8fxxxx",
  "params": {
    "test": 123
  }
}'
{
  "success": true,
  "message": "Request verified successfully."
}

Body

application/json
Payload for verifying the signature of the request
client_id
string
required

Client ID generated when creating new api keys

Example:

"K1PoY1WYricSpXh6Wm24txxxxxxxxxx"

sender
string
required

The title of the integration that sent the request

Example:

"First Integration"

timestamp
integer
required

Timestamp of the request

Example:

1709291964

salt
string
required

Salt for added security

Example:

"salt00494"

signature
string
required

Signature of the request for verification

Example:

"x21120d4ca274ce462e6415e571xxxxx1b87f462a802221595ed870bf8fxxxx"

params
object
required

Additional parameters of the request

Response

200
application/json
Request verified successfully.
success
boolean
Example:

true

message
string

Success message

Example:

"Request verified successfully."