[#1451] Assistance Needed to Retrieve Client Information from SimplyBook.me API

Migrated from Redmine #1451 | Author: dtech dtech
Status: New | Priority: High, I’m very impatient | Created: 2025-08-05


Hello,

I am integrating SimplyBook.me with my Laravel application.
After a payment is processed using a custom payment method, I receive the following data:

[
“order_id” => “142”,
“amount” => “320”,
“currency” => “SAR”,
“customer_id” => “19”,
“save_payment_method”=> “0”,
“return_url” => “https://app.sbpay.me/return/…”,
“cancel_url” => “https://app.sbpay.me/cancel/…”,
“timestamp” => “2025-08-05T07:39:13+00:00”,
“algo” => “sha256”,
“signature” => “d697bd3d8d3b9dfaef81de0a11b5c22d7cc16078c2/…”
]

I would like to use the SimplyBook.me API to retrieve the full client information (name, email, phone, etc.) based on the customer_id I receive.

Could you please guide me on:

How to obtain the API Key and any other required credentials (e.g., company_login, client_hash, secret_key).

The exact API endpoint and method to use for retrieving client details with customer_id.

Any required authentication steps (token generation or signature creation).