Repzo API - Payments (1.0.0)

Download OpenAPI specification:Download

OpenAPI specification for Repzo Payments endpoints.

Find payments

query Parameters
params
object

Query parameters for filtering payments

Responses

Response samples

Content type
application/json
{
  • "data": [
    ],
  • "meta": { }
}

Create a payment

Request Body schema: application/json
client
string
rep
string
amount
number
paymentMethod
string
reference
string
description
string
date
string <date-time>

Responses

Request samples

Content type
application/json
{
  • "client": "string",
  • "rep": "string",
  • "amount": 0,
  • "paymentMethod": "string",
  • "reference": "string",
  • "description": "string",
  • "date": "2019-08-24T14:15:22Z"
}

Response samples

Content type
application/json
{
  • "data": {
    }
}

Get a payment by ID

path Parameters
id
required
string

Responses

Response samples

Content type
application/json
{
  • "data": {
    }
}

Update a payment

path Parameters
id
required
string
Request Body schema: application/json
client
string
rep
string
amount
number
paymentMethod
string
reference
string
description
string
date
string <date-time>

Responses

Request samples

Content type
application/json
{
  • "client": "string",
  • "rep": "string",
  • "amount": 0,
  • "paymentMethod": "string",
  • "reference": "string",
  • "description": "string",
  • "date": "2019-08-24T14:15:22Z"
}

Response samples

Content type
application/json
{
  • "data": {
    }
}