### Configurar Meta Description en HTML Source: https://ayuda.clientify.com/es/articles/10695184-new-como-se-usa-el-campo-meta-description-y-keywords-o-palabras-clave-en-la-landing-page Este snippet muestra la estructura HTML para añadir una etiqueta 'meta description'. Se utiliza para proporcionar un resumen conciso del contenido de la página a los motores de búsqueda y usuarios. El atributo 'content' debe ser reemplazado por la descripción deseada. ```html ``` -------------------------------- ### GET /v1/users/ Source: https://ayuda.clientify.com/es/articles/6856586-como-hacer-consultas-de-usuarios-por-api Retrieve all users associated with the account. ```APIDOC ## GET /v1/users/ ### Description This endpoint allows you to retrieve a list of all users registered within your Clientify account. ### Method GET ### Endpoint https://api.clientify.net/v1/users/ ### Parameters #### Path Parameters None #### Query Parameters None #### Request Body None ### Request Example None ### Response #### Success Response (200) - **users** (array) - A list of user objects. - **user_id** (integer) - The unique identifier for the user. - **name** (string) - The name of the user. - **email** (string) - The email address of the user. #### Response Example ```json { "users": [ { "user_id": 123, "name": "John Doe", "email": "john.doe@example.com" }, { "user_id": 456, "name": "Jane Smith", "email": "jane.smith@example.com" } ] } ``` ``` -------------------------------- ### Obtener Idioma del Usuario con API Source: https://ayuda.clientify.com/es/articles/6856601-como-hacer-consultas-de-la-configuracion-por-api Recupera el idioma actual del usuario utilizando el endpoint GET de la API de Clientify. Este endpoint es útil para personalizar la experiencia del usuario. ```http GET: https://api.clientify.net/v1/settings/language/ ``` -------------------------------- ### GET /v1/wall-entries/ Source: https://ayuda.clientify.com/es/articles/6852384-como-hacer-consultas-del-timeline-por-api Retrieves a list of all timeline entries registered for the user. ```APIDOC ## GET /v1/wall-entries/ ### Description Returns the list of timeline entries registered for the user. ### Method GET ### Endpoint https://api.clientify.net/v1/wall-entries/ ### Parameters #### Path Parameters None #### Query Parameters None ### Request Example None ### Response #### Success Response (200) - **[Array of timeline entries]** (object[]) - A list of timeline entry objects. #### Response Example { "data": [ { "id": 1, "title": "Example Entry 1", "created_at": "2023-10-27T10:00:00Z" }, { "id": 2, "title": "Example Entry 2", "created_at": "2023-10-27T11:00:00Z" } ] } ```