ความคิดเห็น •

  • @nirmalvarma7095
    @nirmalvarma7095 ปีที่แล้ว +1

    Great oiece of knoiwledge :)

  • @venkateshpanakala9097
    @venkateshpanakala9097 2 ปีที่แล้ว

    Nice and detailed explanation 👍.

    • @Qtometa
      @Qtometa 2 ปีที่แล้ว

      Thanks !!

    • @rajeshgosula345
      @rajeshgosula345 2 ปีที่แล้ว

      May I know the same scenario using customised API instead of using OOTB API.

    • @Qtometa
      @Qtometa 2 ปีที่แล้ว

      @@rajeshgosula345 we need to develop but when ootb is available why we want to create customized one.

    • @rajeshgosula345
      @rajeshgosula345 2 ปีที่แล้ว

      @@Qtometa my team lead suggests always creating a customized service API As for our business requirements. That's y I created a new one and it's working, again he suggests removing the addworkobject In the activity. Instead of using svcaddworkobject, he suggests using createworkpage. now, I am getting a new case but it's not mapping properly.

    • @Qtometa
      @Qtometa 2 ปีที่แล้ว +1

      Yes, this is the old model where we 1st used to create workpage, then addworkobject. Create work page will create a page and set few required attribute and then call add work object to create case. We would still suggest to take a look of dxapi and we feel it should suffice your requirement. If one api is not solving business requirements try combo of apis. If nothing is working out them only go for custom one, in that case svcsddworkobject is a good option as does exception handling well.

  • @debsubs5627
    @debsubs5627 ปีที่แล้ว

    Great help.can you also show how to use dynamic referencing in authentication profile for basic type.not able to send password dynamically for each different user in authentication profile

    • @Qtometa
      @Qtometa ปีที่แล้ว

      Try to use oauth for dynamic authentication.

  • @ShravanKumarBibinagaram
    @ShravanKumarBibinagaram 6 หลายเดือนก่อน

    Hi,
    Lets say, Front end is React UI and the user wants to create a case. That means, here we would be using Ceate Case API which creates the case. Our pega application acts like Host here. That means Front end team configure Connect-Rest rule in their technology (React)?? By passing those parameters to Pega Service Rest, a case gets created. Is my understanding correct?
    If not correct, i am very much confused like how the data is getting passed. How are onclick actions are happening from react to pega application. Are we configuring anything on React UI, which internally gets passed to Pega Application through DX API

  • @tamkinraza3510
    @tamkinraza3510 2 หลายเดือนก่อน

    Hi Qtometa , i am getting issue while create case using DXAPI, the case goes to problem flow it says no routing information is there for the assignment but it is there that current operator, while creating case fro the same manually it is working

    • @Qtometa
      @Qtometa 2 หลายเดือนก่อน

      Hello- have you checked-in all your flows?

    • @tamkinraza3510
      @tamkinraza3510 2 หลายเดือนก่อน

      @@Qtometa thanks for the prompt response, yes I checked the flow only one assignment is there and routed to current operator, I am able to create case by directly executinh the case type there is no issue but creating case using dxapi it creates the case but when you open that case from dev env it goes to problemflowWorkbasket and error is no routing information provided for this assignment.
      See I am using pega exiting service packages api and existing service rest "cases"
      But in service packages AG is PRPC: Administrators but the operator AG is HealthcarePOC: Authors. Is it because of that if yes then I used this access group too but in this dx api not able to create the case

    • @tamkinraza3510
      @tamkinraza3510 2 หลายเดือนก่อน +1

      Now it got resolved it's working fine, i changed the ag as per operator and used basic authentication

  • @tanyasingh2294
    @tanyasingh2294 6 หลายเดือนก่อน

    @qtometa how can we use the dx api in pega itself to display the customer details based on the customer ID that user enters on the screen.

    • @Qtometa
      @Qtometa 6 หลายเดือนก่อน

      Here you can use data pages, why do we need dxapi? If your customer details exists in different pega server you can use get data api which takes data page as request parameter.

    • @tanyasingh2294
      @tanyasingh2294 6 หลายเดือนก่อน

      @@Qtometa actually my lead wants this requirement only like when the user enters customer Id the customer name and addresses details should be fetched using dxapi,i tried to test that get data view dx api and it worked fine but how to use it in our UI

    • @Qtometa
      @Qtometa 6 หลายเดือนก่อน +1

      @tanyasingh2294 This video will help to understand how to consume DXAPI. Sending Multipart Messages(File) from Pega:Integrating with Pega and Non-Pega Applications via DXAPI
      th-cam.com/video/3_sdB3k_ckI/w-d-xo.html

    • @tanyasingh2294
      @tanyasingh2294 6 หลายเดือนก่อน

      @@Qtometa thank you sir

  • @bopakitebalo1518
    @bopakitebalo1518 ปีที่แล้ว

    What values should I put when hitting the /notifications api endpoint?

    • @Qtometa
      @Qtometa ปีที่แล้ว

      please check in the service package, you will find that.

  • @sainathkokala5324
    @sainathkokala5324 ปีที่แล้ว

    am doing the same as you but getting error for fields(validation error) added in content .Anything we need to do like mapping for content fields

    • @Qtometa
      @Qtometa ปีที่แล้ว

      No, pega will do the mapping.. you just need to have the same attribute what ur passing inside content..

  • @chanakyapeela647
    @chanakyapeela647 9 หลายเดือนก่อน

    How can we fetch data between two pega applications using Pega APIs???

    • @Qtometa
      @Qtometa 9 หลายเดือนก่อน

      Use Data api and pass datapage name. In consumer system you need to create connector that data api.

  • @chetangupta2861
    @chetangupta2861 ปีที่แล้ว

    Hi, I wanted to validate few fields for create case API, If I pass field A as null, then the API should through 4XX error. How to achieve this

    • @Qtometa
      @Qtometa ปีที่แล้ว

      Add the validation in your 1st stage of case type, if validation fails, pega would return the failure message in response.

    • @chetangupta2861
      @chetangupta2861 ปีที่แล้ว

      @@Qtometa first stage is create stage. I think case level validation won't work on Create stage right

    • @Qtometa
      @Qtometa ปีที่แล้ว

      @@chetangupta2861 It will work, in Create stage - 1st flow you can call validate rule in utility.

  • @everything1039
    @everything1039 10 หลายเดือนก่อน

    Hi sir could you please tell what is the purpose of Dxapis

    • @Qtometa
      @Qtometa 10 หลายเดือนก่อน

      There are multiple usages.. you can perform any task from external system using these apis, what you can do from pega. Like create case approve etc. apart from these apis can be used to document, fetching data using data pages, managing cache etc.. we have tons for apis for various things

  • @akhila4105
    @akhila4105 ปีที่แล้ว

    You selected Pega API in the drop down, not DX API , is it both are same ? please tell me

    • @Qtometa
      @Qtometa ปีที่แล้ว

      Yes, Pega API is fine. Pega api is DXAPi only.

    • @akhila4105
      @akhila4105 ปีที่แล้ว

      @@Qtometa when we using DX API V2, Creating cases fileds are different right and how to pass the request body like as we pass in V1 pega API

    • @Qtometa
      @Qtometa ปีที่แล้ว +1

      V2 is mainly for cosmos react.

    • @akhila4105
      @akhila4105 ปีที่แล้ว +1

      Thank you so much for the clarification

    • @akhila4105
      @akhila4105 ปีที่แล้ว

      Can please clarify one doubt, whenever I tried to run the api , the case I'd is created with `c' like c -1 or c-2 but when run the case normally case instance is created like I - 100 , both cases are same but creating instance in different manner, please tell me

  • @asksagaram3740
    @asksagaram3740 ปีที่แล้ว

    How do we pass keys case key, assignment key from external UI while calling this api

    • @Qtometa
      @Qtometa ปีที่แล้ว

      Watch this video Learn Pega DX API React Starter Pack Configuration end to end in 10 minutes #pega #pegadev #pegahelp
      th-cam.com/video/yV3ZTDFh3nM/w-d-xo.html, pega is doing in there starter kit