### API Playground Source: https://payu.in/developer-guide/index Access the API Playground to view all APIs needed for integration. ```APIDOC ## API Playground ### Description View all APIs you need to integrate with. The API Playground provides guides for using the APIs. ### Method GET ### Endpoint /websites/payu_in_developer-guide/api-playground ### Parameters None ### Request Example None ### Response #### Success Response (200) - Links and guides for PayU's APIs. #### Response Example "API Playground" link ``` -------------------------------- ### Integrate with Website Source: https://payu.in/developer-guide/index Detailed documentation and references for integrating PayU's payment gateway with your website for web checkout. ```APIDOC ## Integrate with Website ### Description Detailed documentation and references for web checkout integration with PayU's payment gateway. ### Method GET ### Endpoint /websites/payu_in_developer-guide/integrate-with-website ### Parameters None ### Request Example None ### Response #### Success Response (200) - Documentation links and guides for website integration. #### Response Example "View Docs" link ``` -------------------------------- ### Integrate with Mobile App Source: https://payu.in/developer-guide/index Collect payments in your Android or iOS app using PayU's SDKs. ```APIDOC ## Integrate with Mobile App ### Description Collect payments in your Android or iOS app with PayU's SDKs. ### Method GET ### Endpoint /websites/payu_in_developer-guide/integrate-with-mobile-app ### Parameters None ### Request Example None ### Response #### Success Response (200) - Links to SDKs for mobile app integration. #### Response Example "View SDKs" link ``` -------------------------------- ### Integrate Payment Gateway with cURL Source: https://payu.in/developer-guide/index This snippet demonstrates how to integrate the PayU payment gateway using cURL, a common command-line tool for transferring data with URLs. It's a foundational step for initiating payment transactions. ```shell curl -X POST https://your-payu-api-endpoint.com/v1/payments \ -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \ -H "Content-Type: application/json" \ -d '{ \ "amount": 100.00, \ "currency": "INR", \ "order_id": "ORD-12345", \ "customer_details": { \ "email": "customer@example.com", \ "phone": "9876543210" \ }, \ "payment_method": "credit_card", \ "return_url": "https://your-website.com/payment/success" \ }' ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.