Hosted Payment Form Menu

The Tools menu provides links to the reporting engine within PayConex, quick-links to the Settings and Agent menus, and of particular relevance to this document, the Hosted Payment Forms module.

Endpoints

  • List

  • Create

  • View

  • Update

  • Delete


List

URL: api/json/users
Method: GET

cURL

curl https://mobile.quickswipe.com/api/json/users/?token=abcde

Response

HTTP/1.1 200 OK
Content-Type: application/json; charset=UTF-8

603

Create

URL: /api/json/users/
Method: POST

cURL

`curl https://mobile.quickswipe.com/api/json/users?token=abcde \

-F "email=[email protected]" \
-F "password=P@ssw0rd" \
-F "role=clerk" \
-F "[email protected]"`

Arguments

393

Response

HTTP/1.1 201 Created
Location: /api/json/users/9/
Content-Type: application/json; charset=UTF-8

603

View

URL: /api/json/users/1/
Method: GET

cURL

curl https://mobile.quickswipe.com/api/json/users/9/?token=abcde

Response

HTTP/1.1 200 OK
Content-Type: application/json; charset=UTF-8

603

Update

URL: /api/json/users/1/
Method: PUT

cURL

curl https://mobile.quickswipe.com/api/json/users/1?token=abcde \\ \-F "[email protected]" \\ \-F "[email protected]"

Arguments

393

Response

HTTP/1.1 200 OK
Content-Type: application/json; charset=UTF-8

603

Delete

URL: /api/json/users/11/
Method: DELETE

cURL

curl -X DELETE https://mobile.quickswipe.com/api/json/users/11?token=abcde

Response

HTTP/1.1 204 No Content