1. Profile list

Api Get List Profile

get
Authorizations
Query parameters
offsetintegerOptionalDefault: 0
limitinteger · max: 100OptionalDefault: 20
Responses
200
Successful Response
application/json
get
GET /profiles/ HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
  "success": true,
  "data": {
    "user_id": 1,
    "lst_profile": [
      {
        "id": 1,
        "user_id": 1,
        "profile_data": null,
        "created_at": "2025-07-04T02:41:19.267Z",
        "updated_at": "2025-07-04T02:41:19.267Z",
        "shared_on_cloud": true,
        "status": 1
      }
    ],
    "pagination": {
      "current_offset": 1,
      "limit": 1,
      "total": 1,
      "next_offset": 1
    }
  }
}

Last updated