HT Partner API
  1. Clients
HT Partner API
  • Orders
    • Retrieve all orders
      GET
    • Order count by tag
      GET
    • Create order
      POST
  • Clients
    • Create client
      POST
    • Retrieve client
      GET
    • Update client
      PUT
    • Create setup intent
      POST
    • Create ephemeral key
      POST
  1. Clients

Retrieve client

Staging
https://apis.hellotech.com
Staging
https://apis.hellotech.com
GET
/api/partners/clients/{id}

Request

Authorization
Add parameter in header
Api-Key
Example:
Api-Key: ********************
Path Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://apis.hellotech.com/api/partners/clients/' \
--header 'Api-Key;'

Responses

🟢200Client object
application/json
Body

Example
{
    "id": 0,
    "external_id": "string",
    "first_name": "string",
    "last_name": "string",
    "email": "user@example.com",
    "phone": "string",
    "full_address": "string",
    "address": {
        "city": "string",
        "state": "string",
        "zip": "string",
        "street": "string"
    },
    "authentication_token": "string"
}
🟠400Error response
🟠404Error response
Modified at 2024-09-27 13:12:28
Previous
Create client
Next
Update client
Built with