- Client Session API
- Payments API
- Payment Methods API
- Loyalty API
POST
$ curl -X PATCH https://api.sandbox.primer.io/client-session \ > -H "X-API-KEY: " \ > -H "Content-Type: application/json" \ > -d '{ > "clientToken": "client-session-token", > "customerId": "customer-123", > "orderId": "order-abc", > "amount": 500, > "customer": { > "emailAddress": "john@primer.io" > }, > "order": { > "lineItems": [ > { > "amount": 100, > "itemId": "shoe-123", > "description": "Blue Shoe", > "quantity": 10 > } > ], > "countryCode": "FR" > }, > "paymentMethod": { > "authorizationType": "FINAL" > } > }'