Update reseller customer

PUT /admin/companies/resellers/{reseller_id}/customers/{customer_id}

Request Structure

  • name: string, required
  • country: string, required
  • address: string
  • city: string
  • region: string
  • post_code: string
  • telephone_number: string
  • mobile_number: string
  • billing_address: string
  • billing_city: string
  • billing_region: string
  • billing_post_code: string
  • billing_country: string
  • billing_company_registration_number: string
  • billing_vat_number: string
  • custom_id: string
  • can_top_up: bool

Example Request

PUT /api/v1/admin/companies/resellers/2/customers/9 HTTP/1.1
Host: tph.io
X-Token: c9c0a840-b5f1-4e0e-84da-e8a4eedfc63b
Content-Type: application/json

{
    "name": "Betty's Stuff",
    "country": "GB",
    "address": "321 Example Road"
}

Response Structure

  • success: bool
  • messages: string
  • data: object
    • data: object
      • id: int
      • name: string
      • type: string
      • telephone_number: string
      • mobile_number: string
      • address: string
      • country: string
      • region: string
      • city: string
      • post_code: string
      • has_used_trial: bool
      • billing_address: string
      • billing_country: string
      • billing_region: string
      • billing_city: string
      • billing_post_code: string
      • billing_vat_number: string
      • billing_company_registration_number: string
      • created_at: string ("2020-12-31 00:00:00+00:00")
      • updated_at: string ("2020-12-31 00:00:00+00:00")

Example Response

{
  "success">:true,
  "messages":"Customer updated.",
  "data":{
    "data":{
      "id":9,
      "name":"Betty's Stuff",
      "type":"business",
      "telephone_number":null,
      "mobile_number":null,
      "address":"321 Example Road",
      "country":"GB",
      "region":null,
      "city":null,
      "post_code":null,
      "billing_address":null,
      "billing_country":null,
      "billing_region":null,
      "billing_city":null,
      "billing_post_code":null,
      "billing_vat_number":null,
      "billing_company_registration_number":null,
      "created_at":"2018-04-27T16:25:20+00:00",
      "updated_at":"2018-04-27T16:30:42+00:00"
    }
  }
}