Every API call requires two headers for authentication:
PUBLICKEY: : A public key associated with your account.SIGN: : A unique signature generated for each API request. Make sure to generate a fresh signature for every call.Headers Example: PUBLICKEY: <your-public-key> SIGN: <your-signature> Content-Type: application/jsonRetrieve account information, including account status.
Endpoint
POST /api/v1/getmyinfo
Request Example
curl 
  --location --request POST 'https://sandbox-api.paycio.ae/api/v1/getmyinfo' \
  --header 'PUBLICKEY: <your-public-key>' \
  --header 'SIGN: <generated-signature>'Response Example
{
  "account": {
  "status": "active",
  "name": "Merchant Name",
  "email": "[email protected]"
  }
  }For any issues or further information, feel free to contact our support at [email protected].


