---
title: Update Order Package Status - Delivered
description: Sipariş paket durumunu Delivered olarak güncelleme
---

İstek yöntemi: POST

Uç nokta: `{{API URL}}`

GraphQL Mutasyonu:

```graphql
mutation UpdateOrderPackageStatus($input: UpdateOrderPackageStatusInput!) {
  updateOrderPackageStatus(input: $input) {
    id
    orderNumber
    orderPackageStatus
    updatedAt
  }
}
```

### cURL

```bash
curl -X POST 'https://api.myikas.dev/api/v2/admin/graphql' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer YOUR_TOKEN' \
  --data-raw '{
    "query": "mutation UpdateOrderPackageStatus($input: UpdateOrderPackageStatusInput!) { updateOrderPackageStatus(input: $input) { id orderNumber orderPackageStatus updatedAt } }",
    "variables": { "input": { "orderId": "ORDER_ID", "package": { "status": "DELIVERED" } } }
  }'
```

Örnek Değişkenler:

```json
{
  "input": {
    "orderId": "52660e20-caa6-46dd-8466-426b304de369",
    "package": {
      "status": "DELIVERED"
    }
  }
}
```


