Skip to main content
PUT
/
sales
Update a sale by ID
curl --request PUT \
  --url https://www.pushlapgrowth.com/api/v1/sales \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "saleId": 123,
  "name": "<string>",
  "email": "[email protected]",
  "totalEarned": 123,
  "commissionRate": 123
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

Body

application/json
saleId
integer
required
name
string
email
string<email>
totalEarned
number
commissionRate
number

Response