# Get user attributes from client Gets a list of particular user’s attributes. Returns only attributes with the client value of attr_type parameter.NoticeRate limits for client-side methods are applied to this method. Endpoint: POST /attributes/users/me/get Version: v1 Security: AttributesBearer ## Request fields (application/json): - `keys` (array) List of attributes’ keys which you want to get. If you do not specify them, the method returns all user’s attributes. - `publisher_project_id` (integer) Project ID you want to get attributes for from Publisher Account. If you do not specify it, the method returns attributes without the value of this parameter. - `user_id` (string,null) User ID which attributes you want to get. The request returns only attributes with the public value of the permission parameter. If you do not specify it or put the user ID of the current user there, the request returns only attributes with any value for the permission parameter. ## Response 200 fields (application/json): - `data_type` (string,null) Data type of attribute Enum: "string", "number", "integer", "boolean" - `description` (string,null) Description of attribute from JSON Schema. - `format` (string,null) Format of attribute from JSON Schema. Can be date-time, date, time, duration, email, uri, uuid or other from JSON Schema [specification](https://json-schema.org/draft/2020-12/json-schema-validation.html#rfc.section.7.3) - `key` (string, required) Name of attribute that is used to identify user’s attribute. - `permission` (string,null) Definition of user’s access level to other users’ attributes. Enum: "public", "private" - `value` (string, required) Value of user’s attribute. ## Response 400 fields (application/json): - `error` (object, required) - `error.code` (string, required) Error code. Example: "003-061" - `error.description` (string, required) Error description. Example: "Object not found." - `error.details` (object) Additional information. ## Response 403 fields (application/json): - `error_code` (string) Error code. - `error_description` (string) Error description. ## Response 422 fields (application/json): - `error_code` (string) Error code. - `error_description` (string) Error description. ## Response 429 fields (application/json): - `error_code` (string) Error code. - `error_description` (string) Error description.