What are the Slack Archives?

It’s a history of our time together in the Slack Community! There’s a ton of knowledge in here, so feel free to search through the archives for a possible answer to your question.

Because this space is not active, you won’t be able to create a new post or comment here. If you have a question or want to start a discussion about something, head over to our categories and pick one to post in! You can always refer back to a post from Slack Archives if needed; just copy the link to use it as a reference..

Hey guys, using the GLUE API I am making a post request to `

U01AC7NN6MQ
U01AC7NN6MQ Posts: 58 πŸ§‘πŸ»β€πŸš€ - Cadet

Hey guys,

using the GLUE API I am making a post request to <http://glue.de.spryker.local/carts/${cartUUID}/items?include=items>, this gives me some info on the items in the cart, however not the string title of the products, is there anyway to get them in the same request, if not what would be the best to get all of them.

Also is there anyway to see what include parameters are available per endpoint, haven't seen them listend anywhere yet.

Comments

  • U01AC7NN6MQ
    U01AC7NN6MQ Posts: 58 πŸ§‘πŸ»β€πŸš€ - Cadet

    request payload:
    data: {
    type: "items",
    attributes: {
    sku: stringSKU,
    quantity: stringQuantity,
    },
    }

  • U01AC7NN6MQ
    U01AC7NN6MQ Posts: 58 πŸ§‘πŸ»β€πŸš€ - Cadet

    Also is there a clear cart endpoint, I dont want to delete the cart I just want to completly clear it.

  • Eugenia Poidenko
    Eugenia Poidenko Sprykee Posts: 145 πŸ§‘πŸ»β€πŸš€ - Cadet

    Hey Niklas.

    No clear cart endpoint exists, You can remove the items one by one though with DELETE /carts/:uuid/items/:groupKey

    as for the product name: items is related to concrete-products . /carts/:uuid/items?include=items,concrete-products should be working.

  • U01AC7NN6MQ
    U01AC7NN6MQ Posts: 58 πŸ§‘πŸ»β€πŸš€ - Cadet

    just so I understand I make one request per item for the delete

  • U01AC7NN6MQ
    U01AC7NN6MQ Posts: 58 πŸ§‘πŸ»β€πŸš€ - Cadet

    or what exactly is that groupKey

  • U01AC7NN6MQ
    U01AC7NN6MQ Posts: 58 πŸ§‘πŸ»β€πŸš€ - Cadet

    also why does the first product have way more info than the others one, I would like all of them to have the info the first one has

  • U01AC7NN6MQ
    U01AC7NN6MQ Posts: 58 πŸ§‘πŸ»β€πŸš€ - Cadet
    edited September 2020

    okay forget my last message they're connected I get that now

  • U01AC7NN6MQ
    U01AC7NN6MQ Posts: 58 πŸ§‘πŸ»β€πŸš€ - Cadet

    So can I make something like a group request? So lets says

    delete /groupkey1/groupkey2/groupkey3 ?