Skip to content

Transactions Connect API (0.0.1)

The Transactions Connect API allows sellers to view and accept shipping requests, which initiates the shipping transaction. You can then track the transaction status until the buyer receives the item.

Download OpenAPI description
Languages
Servers
Production
https://connect.wallapop.com

A shipping transaction is initiated when a seller accepts a shipping request.

Operations
Operations
Operations

Update a tracking status for a delivery.

Request

Perform an update to a delivery's tracking status.

Security
oAuthWithPKCE
Path
deliveryIdstring(uuid)required

Delivery ID

Bodyapplication/jsonrequired
statusstring

Status to which update the delivery to.

Enum"DELIVERED_TO_CARRIER""IN_TRANSIT""DELIVERED""FAILED""CANCELLED"
curl -i -X PATCH \
  'https://connect.wallapop.com/deliveries/{deliveryId}/status' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "status": "DELIVERED_TO_CARRIER"
  }'

Responses

Successfully updated the delivery status.

Response
No content