Available Actions
paymentsrefundspayoutssubscriptions
Input Schema
{
"type": "object",
"required": [
"intent",
"amount"
],
"properties": {
"payer": {
"type": "object"
},
"amount": {
"type": "object"
},
"intent": {
"type": "string"
}
}
}Output Schema
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"links": {
"type": "array"
},
"status": {
"type": "string"
}
}
}Quick Start
API Endpoint
POST /api/execute/paypalcURL Example
curl -X POST \
https://api.nulayers.com/execute/paypal \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"action": "payments"}'