# Wo finde ich in der API bei der Bestellung die Versandart und die Zahlart

**URL:** https://forum.shopware.com/t/wo-finde-ich-in-der-api-bei-der-bestellung-die-versandart-und-die-zahlart/66133
**Category:** Programmierung
**Created:** [8. April 2020 um 12:06 UTC](https://forum.shopware.com/t/wo-finde-ich-in-der-api-bei-der-bestellung-die-versandart-und-die-zahlart/66133 "2020-04-08T12:06:39Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![realconvis](https://avatars.discourse-cdn.com/v4/letter/r/43a26b/32.png) [@realconvis](https://forum.shopware.com/u/realconvis)
#### Post date: [8. April 2020 um 12:06 UTC](https://forum.shopware.com/t/wo-finde-ich-in-der-api-bei-der-bestellung-die-versandart-und-die-zahlart/66133/1 "2020-04-08T12:06:39Z")

</div>

Ich hoffe ich stelle mich nicht all zu doof an, aber ich finde beim Datensatz der Bestellung die verwendete Versandart und die Zahlart nicht.

Kann mir jemand auf die Sprünge helfen?

---

<div class="post-metadata">

### Author: ![realconvis](https://avatars.discourse-cdn.com/v4/letter/r/43a26b/32.png) [@realconvis](https://forum.shopware.com/u/realconvis)
#### Post date: [9. April 2020 um 08:30 UTC](https://forum.shopware.com/t/wo-finde-ich-in-der-api-bei-der-bestellung-die-versandart-und-die-zahlart/66133/2 "2020-04-09T08:30:44Z")

</div>

Sorry fürs pushen - aber hat wirklich keiner bisher an der Ecke gearbeitet?

&nbsp;

---

<div class="post-metadata">

### Author: ![oli2](https://avatars.discourse-cdn.com/v4/letter/o/bbce88/32.png) [@oli2](https://forum.shopware.com/u/oli2)
#### Post date: [9. April 2020 um 11:22 UTC](https://forum.shopware.com/t/wo-finde-ich-in-der-api-bei-der-bestellung-die-versandart-und-die-zahlart/66133/3 "2020-04-09T11:22:53Z")

</div>

Hi, reicht dir das so?

&nbsp;

```
{
    "associations": {
        "deliveries": {
            "associations": {
                "shippingMethod": []
            }
        },
        "transactions": {
            "associations": {
                "paymentMethod": []
            }
        }
    }
}

```

&nbsp;

---

<div class="post-metadata">

### Author: ![realconvis](https://avatars.discourse-cdn.com/v4/letter/r/43a26b/32.png) [@realconvis](https://forum.shopware.com/u/realconvis)
#### Post date: [14. April 2020 um 07:56 UTC](https://forum.shopware.com/t/wo-finde-ich-in-der-api-bei-der-bestellung-die-versandart-und-die-zahlart/66133/4 "2020-04-14T07:56:41Z")

</div>

Ja, danke.

Das war der richtige Hinweis.

Ich hatte über den „search“ Endpunkt abgefragt.

Da muss man diese Associations über den Body mitgeben, damit die angezeigt werden.
