POSPointe
  1. Auth
POSPointe
POSPointe GiftCard Server
  • POSPointe GiftCard Server
  • Pospointe Trans
  • MyPOSPointe API
  • Pospointe Agent
  • Pospointe Loyalty
  • Introduction
  • Health
    • /Health - GET
      GET
  • Auth
    • /Auth/verify - PUT
      PUT
  • Tokenization
    • /v1/Token - POST
      POST
  • Batch
    • /Batch/{storeid} - GET
      GET
    • /Batch/batch/{storeid} - POST
      POST
  • Transaction
    • /Transaction/balancecheck - POST
      POST
    • /Transaction/sellnewcard - POST
      POST
    • /Transaction/reload - POST
      POST
    • /Transaction/radeem - POST
      POST
    • /Transaction/changestatus - PATCH
      PATCH
  1. Auth

/Auth/verify - PUT

PUT
https://giftcard.myposerver.com/Auth/verify
The Auth endpoint allows users to validate their authentication credentials. Upon successful verification, the response will include the details of the franchises associated with the authenticated user, confirming the user's access rights.

Request

Body Params application/json

Example
{
    "username": "string",
    "password": "string"
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://giftcard.myposerver.com/Auth/verify' \
--header 'Content-Type: application/json' \
--data-raw '{
    "username": "string",
    "password": "string"
}'

Responses

🟢200OK
application/json
Body

Example
{
    "userId": "cc64118e-860d-4e8a-9586-7e1f2bc7bc17",
    "firstName": "Test",
    "lastName": "User",
    "businessName": "TEST",
    "phoneNo": "string",
    "email": "string",
    "username": "admin",
    "password": "$2a$11$f0jsnz6gEBHH9Fy/AUw15eZ89eiXmKGXuFw6ickT93cn1zkO5kqOq",
    "address1": "string",
    "address2": "string",
    "city": "string",
    "zipCode": "string",
    "isActive": true,
    "createdDate": "2024-08-12T22:14:57.023",
    "approvedGroupId": "d87c837f-350a-4c55-91b5-6244e618e059",
    "insider": null
}
Modified at 2024-09-11 10:11:47
Previous
Auth
Next
/v1/Token - POST
Built with