POSPointe
  1. Users
POSPointe
Pospointe Loyalty
  • POSPointe GiftCard Server
  • Pospointe Trans
  • MyPOSPointe API
  • Pospointe Agent
  • Pospointe Loyalty
  • Users
    • Verification
      • Verify Email request
      • Verify Email
      • Verify Phone Request
      • Verify Phone
    • Get All Users
      GET
    • Create a User
      POST
    • Get a User
      GET
    • Get A User's Accounts
      GET
    • Update a User
      PUT
    • Delete a User
      DELETE
  • Franchisors
    • Get a Franchisor
      GET
  • Auth
    POST
  1. Users

Create a User

Developing
POST
https://giftcard.myposerver.comhttps://pospointeloyalty.azurewebsites.net/Users

Request

Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string username:password
Example:
Authorization: Basic *****************
Body Params application/json

Example
{
  
  "firstName": "Afshan",
  "lastName": "Hassan",
  "phoneNumber": "3478526343",
  "email": "afshanasn@gmail.com",
  "verifiedEmail": false,
  "verifiedPhone": false,
  "address1": "2411 Wallen Lane",
  "address2": "",
  "city": "N Bellmore",
  "state": "NY",
  "zipCode": "11710",
  "country": "USA",
  "password": "Afshan@573184"
 
}

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 POST 'https://pospointeloyalty.azurewebsites.net/Users' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic Og==' \
--data-raw '{
  
  "firstName": "Afshan",
  "lastName": "Hassan",
  "phoneNumber": "3478526343",
  "email": "afshanasn@gmail.com",
  "verifiedEmail": false,
  "verifiedPhone": false,
  "address1": "2411 Wallen Lane",
  "address2": "",
  "city": "N Bellmore",
  "state": "NY",
  "zipCode": "11710",
  "country": "USA",
  "password": "Afshan@573184"
 
}'

Responses

🟢200OK
application/json
Body

Example
{
    "id": "string",
    "firstName": "string",
    "lastName": "string",
    "phoneNumber": "string",
    "email": "string",
    "verifiedEmail": true,
    "verifiedPhone": true,
    "address1": "string",
    "address2": "string",
    "city": "string",
    "state": "string",
    "zipCode": "string",
    "country": "string",
    "googleId": null,
    "provider": null,
    "prefferedStoreId": null,
    "lastSeen": "string",
    "createdDate": "string",
    "password": "string",
    "oktaUserId": null,
    "lastOtp": null,
    "isActive": true
}
Modified at 2024-11-29 04:51:49
Previous
Get All Users
Next
Get a User
Built with