Skip to main content
PUT
/
v1
/
stores
/
{store}
/
payments
/
{payment}
/
status
Set payment status
curl --request PUT \
  --url https://api.confiopagos.com/v1/stores/{store}/payments/{payment}/status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "DELIVERING"
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

payment
string
required

The unique identifier of the payment.

Example:

"zrj3pok3ikbx"

store
string
required

The unique identifier of the store.

Example:

"waxhsjr47zsl"

Body

application/json
status
enum<string>
required
Available options:
DELIVERING,
UNDER_REVIEW

Response

204

Successfully set payment status.