Correctly forming a batch requet inthe web api

I am trying to form a batch request to get multiple preformance information from TXN/Performances/Prices?performancesIds. The docs here https://tickets.wethecurious.io/Test/TessituraService/Batching are fairly sparse and incomplete. When forming a batch request like this. I routinely get the error.

"Description": "This operation is not supported for a relative URI.",
Has anyone got a solution or know of more example of correctly Batch requests?
Original request:
{
    "Requests": 
    [
     {

        "HttpMethod": "GET",
        "Id": 1,
        "Uri": "{{url}}TXN/Performances/Prices?performancesIds=13",
        "ContinueOnError": false
     }
]
}