Recipients field at the time of authorization

I’m implementing a payment protocol, and even with split enabled in the integration, I’m not receiving the “recipients” field in the sale payload.
The seller is configured correctly — I can see in the order that the item belongs to that seller — but the recipients field with the list of amounts to be sent to each one is not being sent. Is there any configuration that needs to be done beyond the affiliation?

Hi, how’s it going?

Are you using the allowsSplit and implementsSplit parameters?

Good morning, I wasn’t using implementsSplit, only Allow — I’ll add it and test it out, thank you very much for the information.

@Saito do you have any example of a manifest with implementsSplit? I couldn’t find anything in any documentation — is it a property we add in the payment method itself?

Something like this?

"paymentMethods": [
    {
        "name": "Pix",
        "allowsSplit": "onAuthorize",
        "implementsSplit": true
    },
]

I had to Google it because it’s been a while since I’ve dealt with this.

Try it this way.

"paymentMethods": [
    {
        "name": "Pix",
        "allowsSplit": "onAuthorize"  
    },
 "implementsSplit": true
]