HT Partner API
  1. Orders
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. Orders

Order count by tag

Staging
https://apis.hellotech.com
Staging
https://apis.hellotech.com
GET
/api/partners/orders/tags
Orders
Returns a list of all order count by tag.
Possible order statuses:
PENDING: 0
SEARCHING: 1
ASSIGNED: 2
COMPLETED: 3
CANCELLED: 4
PAID: 5
ABANDONED: 6
CANCELLED_BY_GEEK: 7
MASTER_CLIENT_APPROVAL: 8
UNSERVICEABLE: 9
PAUSED: 10
READY_TO_RESUME: 11
INCOMPLETE: 12
LATE_TECH: 13
PENDING_SHIPPING: 14
PENDING_APPROVAL: 15

Request

Authorization
Add parameter in header
Api-Key
Example:
Api-Key: ********************
Query Params
tags
array[string]
optional
tag
Example:
["tag_1"]
status
array[string]
optional
Example:
["1"]

Request 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/orders/tags?tags=tag_1&status=1' \
--header 'Api-Key;'

Responses

🟢200OK
application/json
Body
tags
object 
required
Additional properties
integer 
optional
Example
{
    "tags": {
        "property1": 0,
        "property2": 0
    }
}
🟠400Error response
🟠404Error response
Modified at 2024-09-25 17:14:38
Previous
Retrieve all orders
Next
Create order
Built with