---
title: ikas Add Timeline Message
description: Siparişe özel zaman çizelgesi mesajı ekler
---

```graphql
mutation {
  addCustomTimelineEntry(input: {
    message: "Mesaj içeriği"
    sourceId: "ORDER_ID"
    sourceType: ORDER
  })
}
```

### 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 ($input: AddCustomTimelineEntryInput!) { addCustomTimelineEntry(input: $input) }",
    "variables": { "input": { "message": "Mesaj içeriği", "sourceId": "ORDER_ID", "sourceType": "ORDER" } }
  }'
```


