Req. for add Notification whehn buyer delete the buy

  • Servitel

    480 mensajes

    Suiza

    Hi Support,
    Since some months, my clients have been experiencing an increasing number of cancellations. Would it be possible to please add a notification so I can automatically manage cancellations?

    Thanks.
    Roberto
  • @fred
    Administrador

    170 mensajes

    Bélgica

    Hi Support,
    Since some months, my clients have been experiencing an increasing number of cancellations. Would it be possible to please add a notification so I can automatically manage cancellations?

    Thanks.
    Roberto
    Hi Servitel,

    A new notification "Seller_Item_Cancelled" has been added in december to handle the cancelled sale. You can find more informations here: Vinculo (https)

    Fred
  • Servitel

    480 mensajes

    Suiza

    Hi Servitel,

    A new notification "Seller_Item_Cancelled" has been added in december to handle the cancelled sale. You can find more informations here: Vinculo (https)

    Fred
    Hi Fred,
    thanks for the answer, but I need a notification when a BUYER delete an order.
    OR the Seller_Item_Cancelled works also for buyer cancellations ?
  • Servitel

    480 mensajes

    Suiza

    Just tried to add the Seller_Item_Cancelled notification, but the request fails with this error:
    The asked destination (" Vinculo (https) seems to be invalid!

    The destination is the same of all others Notifications

    Any suggestion ?
  • @fred
    Administrador

    170 mensajes

    Bélgica

    Hi Fred,
    thanks for the answer, but I need a notification when a BUYER delete an order.
    OR the Seller_Item_Cancelled works also for buyer cancellations ?
    Hi Servitel,

    You should received the notification even if the cancellation came from the buyer.

    I'll check why you have an issue when adding it on your account and i'll get back to you as soon as I know more

    Fred
  • @fred
    Administrador

    170 mensajes

    Bélgica

    Just tried to add the Seller_Item_Cancelled notification, but the request fails with this error:
    The asked destination (" Vinculo (https) seems to be invalid!

    The destination is the same of all others Notifications

    Any suggestion ?
    Hi Servitel,

    I can't reproduce your issue. Did you correctly set the notificationType to "Curl_Seller_Item_Cancelled" in your POST data?

    Fred
  • Servitel

    480 mensajes

    Suiza

    Hi Servitel,

    I can't reproduce your issue. Did you correctly set the notificationType to "Curl_Seller_Item_Cancelled" in your POST data?

    Fred
    Yes !
    The call is the same as per others notifications.
    The call is this:

    'notificationType' => 'Curl_Seller_Item_Close_Sold','destination' => ' Vinculo (https) .............'

    The same url as per others notifications

    This happens for all my clients
  • @fred
    Administrador

    170 mensajes

    Bélgica

    Yes !
    The call is the same as per others notifications.
    The call is this:

    'notificationType' => 'Curl_Seller_Item_Close_Sold','destination' => ' Vinculo (https) .............'

    The same url as per others notifications

    This happens for all my clients
    I tried a call on the production API with the user you manage ending with "X17" and I successfully manage to add the notification

    I'm not sure what's the issue. Is the url correctly formed (starting with https:// with a correct tld, etc) ?

    This command line works for me:
    curl --location ' Vinculo (https) ' \
    --header 'Content-Type: application/x-www-form-urlencoded' \
    --data-urlencode 'notificationType=Curl_Seller_Item_Cancelled' \
    --data-urlencode 'destination= Vinculo (https) '
  • Servitel

    480 mensajes

    Suiza

    I tried a call on the production API with the user you manage ending with "X17" and I successfully manage to add the notification

    I'm not sure what's the issue. Is the url correctly formed (starting with https:// with a correct tld, etc) ?

    This command line works for me:
    curl --location ' Vinculo (https) ' \
    --header 'Content-Type: application/x-www-form-urlencoded' \
    --data-urlencode 'notificationType=Curl_Seller_Item_Cancelled' \
    --data-urlencode 'destination= Vinculo (https) '
    I use the same curl call for all notifications I just change the notification name ('Curl_Seller_Item_Close_Sold','Curl_Seller_Payment_Received','Seller_Item_Cancelled_Sale')

    First two works
  • @fred
    Administrador

    170 mensajes

    Bélgica

    I use the same curl call for all notifications I just change the notification name ('Curl_Seller_Item_Close_Sold','Curl_Seller_Payment_Received','Seller_Item_Cancelled_Sale')

    First two works
    Ah, that's probably the issue. It's not "Seller_Item_Cancelled_Sale", it's "Curl_Seller_Item_Cancelled".

    You have to start with the channel you want to use (Curl or Email).
    For the name, it was Seller_Item_Cancelled_Sale in the github documentation but it was not consistant with what's in the codebase so I changed it yesterday to "Seller_Item_Cancelled"
  • Servitel

    480 mensajes

    Suiza

    Ah, that's probably the issue. It's not "Seller_Item_Cancelled_Sale", it's "Curl_Seller_Item_Cancelled".

    You have to start with the channel you want to use (Curl or Email).
    For the name, it was Seller_Item_Cancelled_Sale in the github documentation but it was not consistant with what's in the codebase so I changed it yesterday to "Seller_Item_Cancelled"
    Works fine now !

    Thanks Fred