GET
/
address_book.json
curl -X GET \
-H "Content-Type: application/json" \
-H "QB-Token: 2c7b29abe6af6322bb6bbe1bf6b530c4d1012bba" \
https://api.quickblox.com/address_book.json
[
  {
    "name": "Mike Howard",
    "phone": "463571393241"
  },
  {
    "name": "Morgan Fuller",
    "phone": "65021272571"
  }
]

Recipes

Query Parameters

udid
string

User’s device identifier. If specified, all operations will be in this context. Max. length is 64 symbols. If the device identifier is not specified, it means that a user has one global address book across all their devices.

Headers

QB-Token
string
required
A user session token. See our Authentication page to learn more about the session token.

Responses

curl -X GET \
-H "Content-Type: application/json" \
-H "QB-Token: 2c7b29abe6af6322bb6bbe1bf6b530c4d1012bba" \
https://api.quickblox.com/address_book.json
[
  {
    "name": "Mike Howard",
    "phone": "463571393241"
  },
  {
    "name": "Morgan Fuller",
    "phone": "65021272571"
  }
]