Skip to main content
POST
/
createContact
Create Contacts
curl --request POST \
  --url https://api.bleeprs.com/api/createContact \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "name": "Simpu",
    "phoneNumber": "434576565446"
  },
  {
    "name": "Dalu",
    "phoneNumber": "435425324"
  }
]
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
name
string
Example:

"Simpu"

phoneNumber
string
Example:

"434576565446"

Response

200 - undefined