dating / profiles / get – Получение данных профиля
Name Description Type Default value Required
id Идентификатор профиля String Yes
{
    "state": 200,
    "data": [
        {
            Dating profile object
        }
    ]
}
StateData typeDescription
200Dating profile objectSuccessfully
400[]Profile not found
dating / profiles / set – Update profile
Name Description Type Default value Required
id Profile ID String Yes
name Name String No
description Description String No
main_image Image ID in list Integer No
delete_image Image ID in list Integer No
new_image Attachment object for new image Object No
crop_avatar List of coordinates x, y, width, height [] No
{
    "state": 200,
    "data": true
}
StateData typeDescription
200Dating profile objectSuccessfully
400NULLProfile not found
dating / models / get – Listing available models
{
    "state": 200,
    "data": [
        {
            "name": "Tony Bark",
            "avatar": "https://cdn01.tazeros.com/404",
            "unseen_count": 23,
            "model": "love",
            "active": true
        }
    ]
}
Name Description Type
name Full name String
avatar Profile avatar String
unseen_count Count of unseen messages Integer
model Type of model String
active Is model active? True / False
StateData typeDescription
200[]Successfully
404[]Dating product not activated
405[]Models list are empty
dating / models / set – Setting the current model
Name Description Type Default value Required
model Model String No
{
    "state": 200,
    "data": [
        {
            "name": "Tony Bark",
            "avatar": "https://cdn01.tazeros.com/404",
            "unseen_count": 23,
            "model": "love",
            "active": true
        }
    ]
}
Name Description Type
name Full name String
avatar Profile avatar String
unseen_count Count of unseen messages Integer
model Type of model String
active Is model active? True / False
StateData typeDescription
200[]Successfully
400[]Model is empty
404[]Dating product not activated