API de Aoorora

La API de Aoorora esta organizada usando REST.

JSON API

La API de Aoorora solo responde a JSON, los estándares utilizados son JSON-API y HATEOAS, a menos de que la documentación indique lo contrario.

Autenticación

La autenticación utilizada es basada en tokens. Tienes que incluir tu llave privada en todas las peticiones realizadas, utilizando el header de Authorization.

Puedes obtener tu llave privada y cambiarla en tu Panel de Administración.

Tu llave privada es solo para ti, mantenla segura. No la compartas publicamente, ni la registres en tu sistema de Control de Versiones.

Todas las peticiones deben ser hechas mediante HTTPS, he aquí un ejemplo de una petición válida:

$ curl staging.creditar.io/products \
    -H "Authorization: Token token=your-api-key" \
    -H "Accept: application/vnd.creditar.v2+json" \
    -H "Content-Type: application/json"

Headers

Tal y como se observa en el ejemplo anterior hay 3 headers de carácter obligatorio en todas las peticiones a realizar en la API de Aoorora

  1. Authorization

    Authorization: Token token=your-api-key
  2. Accept

    Accept: application/vnd.creditar.v2+json

    ó

    Accept: application/json
  3. Content-Type (peticiones diferentes a GET)

    Content-Type: application/json

La API de Aoorora responderá con un código 401 si no se envía el header de Authorization y con un código 406 si es vació o incorrecto el header de Accept.

Versiones

La API de Aoorora cuenta con algunas versiones disponibles para las actualizaciones en la API. La versión más actual es la Versión 2.

Listado de algunas versiones disponibles: Versión 1 y Versión 2.

Recuerda que para especificar a la API que versión utilizar es necesario mandar el header Accept seguido de la versión.

  • Accept

    Accept: application/vnd.creditar.v2+json

Changelog

El Changelog es una lista de actualizaciones en la API incompatibles con versiones anteriores. Aquí encontraras la información de una actualización de una versión.

Versión 1

En esta versión generica es para un flujo de créditos tradicionales.

  • 29/06/2021

  • 19/10/2020

    • Se ha agregado un nuevo atributo para el recurso de Solicitudes que es maximum_penalty_days que indica la cantidad de días máximos sobre los que se cobran intereses moratorios por Crédito.
  • 13/08/2020Cantidad Aprobada del Crédito Solicitado

    • Se ha agregado dos nuevos attributos para el recurso de Solicitudes que son maximum_amount_allowed_cents y maximum_credit_allowed que mostraran información sobre los límites aplicados sobre la Solicitud por Cliente.
  • 27/04/2020

  • 17/04/2020

    • En la creación de un Archivo la respuesta del recurso ha actualizado y agregamos en la respuesta los siguientes atributos attachmentable_type, attachmentable_id y reemplazamos url por file.
  • 18/03/2020

Versión 2

En esta versión generica es para un flujo de tipos de créditos. En Créditos existen varios tipos como Crédito Simple, Línea de Crédito y Balance de Crédito. El Balance del Crédito es una relación pertenenciente a una Línea de Crédito donde se concentra un balance de los Movimientos de tipo cargo y abono.

  • 12/01/2022

  • 08/12/2021

    • Se ha agregado nuevos atributos principal_paid_amount_cents, interest_paid_amount_cents, interest_tax_paid_amount_cents, penalty_interest_paid_amount_cents, penalty_interest_tax_paid_amount_cents, accessories_paid_amount_cents, profit_commission_amount_cents, profit_commission_tax_amount_cents y fueron remplazados por paid_amount_cents, interest_paid_amount_cents y tax_paid_amount_cents a los Fondos de un Inversionista. Esta información desglosa el pago a los Inversionistas.

    • También, se ha agregado en los Movimientos de un Inversionista el desglose de un pago con el atributo breakdown_payment con la misma similitud de atributos anteriores.

  • 29/06/2021

  • 19/10/2020

    • Se ha agregado un nuevo atributo para el recurso de Solicitudes que es maximum_penalty_days que indica la cantidad de días máximos sobre los que se cobran intereses moratorios por Crédito.
  • 13/08/2020

    • Se ha agregado dos nuevos attributos para el recurso de Solicitudes que son maximum_amount_allowed_cents y maximum_credit_allowed que mostraran información sobre los límites aplicados sobre la Solicitud por Cliente.
  • 20/05/2020

  • 27/04/2020

  • 17/04/2020

    • En la creación de un Archivo la respuesta del recurso ha actualizado y agregamos en la respuesta los siguientes atributos attachmentable_type, attachmentable_id y reemplazamos url por file.
  • 13/04/2020

Sandbox

Para habilitar en modo entorno de pruebas es obligatorio agregar el siguiente header en la petición a realizar en la API de Aoorora

  • Application-Context

    Application-Context: sandbox

Productos

Un Producto es la representación de un Producto de crédito. Todas las operaciones sobre Productos son de solo lectura.

Productos

Esta ruta solo listará los Productos activos.

GET staging.creditar.io/products?cursor=5a36f715-1815-453e-81c5-68d0d1f96bc8
Requestsexample 1
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Responses200
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "short_name": "un-pago",
      "name": "Crédito a un sólo pago",
      "interest_rate": 20,
      "interest_rate_days": 360,
      "tax": 16,
      "description": "Crédito a sólo pago...",
      "crowdfunding": true,
      "payment_periodicity_label": "Mensual",
      "payment_periodicity_value": 30,
      "default_amount_cents": 500000,
      "minimum_amount_cents": 200000,
      "maximum_amount_cents": 700000,
      "installments_number": 1,
      "installments_minimum": 1,
      "installments_maximum": 3,
      "late_payment_interest": 10,
      "payment_days": 20,
      "created_at": "2018-05-02",
      "updated_at": "2018-05-02"
    }
  ],
  "pagination": {
    "cursors": {
      "after": "5a36f715-1815-453e-81c5-68d0d1f96bc8",
      "next_uri": "/products?cursor=5a36f715-1815-453e-81c5-68d0d1f96bc8"
    }
  },
  "links": [
    {
      "rel": "self",
      "uri": "/products"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "ID único del Producto"
          },
          "short_name": {
            "type": "string",
            "description": "Nombre corto del Producto"
          },
          "name": {
            "type": "string",
            "description": "Nombre completo del Producto"
          },
          "interest_rate": {
            "type": "number",
            "description": "Cantidad en porcentaje del Interés del Producto"
          },
          "interest_rate_days": {
            "type": "number",
            "description": "Número de Días de tasa de interés del Producto"
          },
          "tax": {
            "type": "number",
            "description": "IVA del Producto"
          },
          "description": {
            "type": "string",
            "description": "Descripción del Producto"
          },
          "crowdfunding": {
            "type": "boolean",
            "description": "Recaudación de fondos"
          },
          "payment_periodicity_label": {
            "type": "string",
            "description": "Nombre del valor del Catalogo de Periodicidad de Pago del Producto"
          },
          "payment_periodicity_value": {
            "type": "number",
            "description": "Número de la Periodicidad de Pago del Producto"
          },
          "default_amount_cents": {
            "type": "number",
            "description": "Cantidad default en centavos del Crédito del Producto"
          },
          "minimum_amount_cents": {
            "type": "number",
            "description": "Cantidad mínima en centavos del Crédito del Producto"
          },
          "maximum_amount_cents": {
            "type": "number",
            "description": "Cantidad máxima en centavos del Crédito del Producto"
          },
          "installments_number": {
            "type": "number",
            "description": "Número de Plazos del Producto"
          },
          "installments_minimum": {
            "type": "number",
            "description": "Número mínimo de Plazos del Producto"
          },
          "installments_maximum": {
            "type": "number",
            "description": "Número máximo de Plazos del Producto"
          },
          "late_payment_interest": {
            "type": "number",
            "description": "Porcentaje del Interés moratorio del Producto"
          },
          "payment_days": {
            "type": "number",
            "description": "Número de días para pagar después de la fecha de corte"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación del Producto"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación del Producto"
          }
        },
        "required": [
          "id",
          "created_at",
          "updated_at"
        ]
      },
      "description": "Productos"
    },
    "pagination": {
      "type": "object",
      "properties": {
        "cursors": {
          "type": "object",
          "properties": {
            "after": {
              "type": "string",
              "description": "Cursor al siguiente registro."
            },
            "next_uri": {
              "type": "string",
              "description": "URL para la siguiente página."
            }
          },
          "required": [
            "after",
            "next_uri"
          ],
          "description": "Cursores"
        }
      },
      "required": [
        "cursors"
      ],
      "description": "Información sobre la Paginación"
    },
    "links": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "rel": {
            "type": "string"
          },
          "uri": {
            "type": "string"
          }
        },
        "required": [
          "rel",
          "uri"
        ]
      },
      "description": "Links a referencias."
    }
  },
  "required": [
    "pagination",
    "links"
  ]
}

Listar todos los Productos
GET/products{?cursor}

La obtención de la lista de Productos activos es una acción paginada. Se puede pasar el parámetro opcional cursor para obtener la siguiente página de Productos. Esta ruta siempre regresará 20 Productos por página.

Puedes utilizar algunos de los siguientes parámetros como filtros:

Parámetro Tipo de filtro Descripción
by_created_at Rango de fecha Filtra por fecha de creación
by_updated_at Rango de fecha Filtra por fecha de última actualización
URI Parameters
HideShow
cursor
string (required) Example: 5a36f715-1815-453e-81c5-68d0d1f96bc8

Referencia del Cursor utilizado para paginar.


Producto

Obtiene un solo Producto y todos sus detalles.

GET staging.creditar.io/products/6313ac69-dc0d-45a8-8804-4ac451e1db5c
Responses200404
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Body
{
  "data": [
    {
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "short_name": "un-pago",
      "name": "Crédito a un sólo pago",
      "interest_rate": 20,
      "interest_rate_days": 360,
      "tax": 16,
      "description": "Crédito a sólo pago...",
      "crowdfunding": true,
      "payment_periodicity_label": "Mensual",
      "payment_periodicity_value": 30,
      "default_amount_cents": 500000,
      "minimum_amount_cents": 200000,
      "maximum_amount_cents": 700000,
      "installments_number": 1,
      "installments_minimum": 1,
      "installments_maximum": 3,
      "late_payment_interest": 10,
      "payment_days": 20,
      "created_at": "2018-05-02",
      "updated_at": "2018-05-02"
    }
  ],
  "links": [
    {
      "rel": "self",
      "uri": "/products/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "ID único del Producto"
          },
          "short_name": {
            "type": "string",
            "description": "Nombre corto del Producto"
          },
          "name": {
            "type": "string",
            "description": "Nombre completo del Producto"
          },
          "interest_rate": {
            "type": "number",
            "description": "Cantidad en porcentaje del Interés del Producto"
          },
          "interest_rate_days": {
            "type": "number",
            "description": "Número de Días de tasa de interés del Producto"
          },
          "tax": {
            "type": "number",
            "description": "IVA del Producto"
          },
          "description": {
            "type": "string",
            "description": "Descripción del Producto"
          },
          "crowdfunding": {
            "type": "boolean",
            "description": "Recaudación de fondos"
          },
          "payment_periodicity_label": {
            "type": "string",
            "description": "Nombre del valor del Catalogo de Periodicidad de Pago del Producto"
          },
          "payment_periodicity_value": {
            "type": "number",
            "description": "Número de la Periodicidad de Pago del Producto"
          },
          "default_amount_cents": {
            "type": "number",
            "description": "Cantidad default en centavos del Crédito del Producto"
          },
          "minimum_amount_cents": {
            "type": "number",
            "description": "Cantidad mínima en centavos del Crédito del Producto"
          },
          "maximum_amount_cents": {
            "type": "number",
            "description": "Cantidad máxima en centavos del Crédito del Producto"
          },
          "installments_number": {
            "type": "number",
            "description": "Número de Plazos del Producto"
          },
          "installments_minimum": {
            "type": "number",
            "description": "Número mínimo de Plazos del Producto"
          },
          "installments_maximum": {
            "type": "number",
            "description": "Número máximo de Plazos del Producto"
          },
          "late_payment_interest": {
            "type": "number",
            "description": "Porcentaje del Interés moratorio del Producto"
          },
          "payment_days": {
            "type": "number",
            "description": "Número de días para pagar después de la fecha de corte"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación del Producto"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación del Producto"
          }
        },
        "required": [
          "id",
          "created_at",
          "updated_at"
        ]
      },
      "description": "Productos"
    },
    "links": {
      "type": "array",
      "description": "Links a referencias"
    }
  },
  "required": [
    "links"
  ]
}
Headers
Content-Type: application/json
Body
{
  "errors": [
    {
      "type": "not_found",
      "code": "ERR-404",
      "message": "El recurso no existe.",
      "href": "staging.creditar.io/api/documentation#err-404"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "errors": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Tipo del Error"
          },
          "code": {
            "type": "string",
            "description": "Código único del Error"
          },
          "message": {
            "type": "string",
            "description": "Mensaje descriptivo del Error"
          },
          "href": {
            "type": "string",
            "description": "Enlace para obtener más información del Error"
          }
        },
        "required": [
          "type",
          "code",
          "message",
          "href"
        ]
      },
      "description": "Error ocurrido"
    }
  },
  "required": [
    "errors"
  ]
}

Obtener un Producto
GET/products/{id}

URI Parameters
HideShow
id
string (required) Example: 6313ac69-dc0d-45a8-8804-4ac451e1db5c

ID único del Producto a obtener


Estimaciones de Crédito

Estimación

Obtiene la Cantidad Total del Interés a pagar, así como el Total del Crédito a pagar, en base al Producto, a la Cantidad Solicitada y el Número de Plazos.

GET staging.creditar.io/credit_estimates?product_id=6313ac69-dc0d-45a8-8804-4ac451e1db5c&amount_cents=1000000&installments_number=12
Responses200404422
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Body
{
  "data": [
    {
      "total_interest_amount_cents": 100000,
      "total_interest_tax_amount_cents": 16000,
      "total_credit_amount_cents": 1116000,
      "installment_plan": [
        {
          "number": 1,
          "total_payment": 858.33,
          "principal": 833.33,
          "interest": 25,
          "interest_tax": 4,
          "ending_balance": 9166.67
        },
        {
          "number": 2,
          "total_payment": 858.33,
          "principal": 833.33,
          "interest": 25,
          "interest_tax": 4,
          "ending_balance": 8333.34
        },
        {
          "number": 3,
          "total_payment": 858.33,
          "principal": 833.33,
          "interest": 25,
          "interest_tax": 4,
          "ending_balance": 7500.01
        }
      ]
    }
  ],
  "links": [
    {
      "rel": "self",
      "uri": "/credit_estimates?product_id=6313ac69-dc0d-45a8-8804-4ac451e1db5c&amount_cents=1000000&installments_number=12"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "total_interest_amount_cents": {
            "type": "number",
            "description": "Total a pagar de Interés en centavos"
          },
          "total_interest_tax_amount_cents": {
            "type": "number",
            "description": "Total del IVA del Interés en centavos"
          },
          "total_credit_amount_cents": {
            "type": "number",
            "description": "Total a pagar del Crédito en centavos"
          },
          "installment_plan": {
            "type": "array",
            "items": [
              {
                "type": "object",
                "properties": {
                  "number": {
                    "type": "number"
                  },
                  "total_payment": {
                    "type": "number"
                  },
                  "principal": {
                    "type": "number"
                  },
                  "interest": {
                    "type": "number"
                  },
                  "interest_tax": {
                    "type": "number"
                  },
                  "ending_balance": {
                    "type": "number"
                  }
                },
                "required": [
                  "number",
                  "total_payment",
                  "principal",
                  "interest",
                  "interest_tax",
                  "ending_balance"
                ]
              },
              {
                "type": "object",
                "properties": {
                  "number": {
                    "type": "number"
                  },
                  "total_payment": {
                    "type": "number"
                  },
                  "principal": {
                    "type": "number"
                  },
                  "interest": {
                    "type": "number"
                  },
                  "interest_tax": {
                    "type": "number"
                  },
                  "ending_balance": {
                    "type": "number"
                  }
                },
                "required": [
                  "number",
                  "total_payment",
                  "principal",
                  "interest",
                  "interest_tax",
                  "ending_balance"
                ]
              },
              {
                "type": "object",
                "properties": {
                  "number": {
                    "type": "number"
                  },
                  "total_payment": {
                    "type": "number"
                  },
                  "principal": {
                    "type": "number"
                  },
                  "interest": {
                    "type": "number"
                  },
                  "interest_tax": {
                    "type": "number"
                  },
                  "ending_balance": {
                    "type": "number"
                  }
                },
                "required": [
                  "number",
                  "total_payment",
                  "principal",
                  "interest",
                  "interest_tax",
                  "ending_balance"
                ]
              }
            ],
            "description": "Tabla de Amortización"
          }
        },
        "required": [
          "total_interest_amount_cents",
          "total_interest_tax_amount_cents",
          "total_credit_amount_cents",
          "installment_plan"
        ]
      },
      "description": "Estimación"
    },
    "links": {
      "type": "array",
      "description": "Links a referencias"
    }
  },
  "required": [
    "links"
  ]
}
Headers
Content-Type: application/json
Body
{
  "errors": [
    {
      "type": "not_found",
      "code": "ERR-404",
      "message": "El recurso no existe.",
      "href": "staging.creditar.io/api/documentation#err-404"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "errors": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Tipo del Error"
          },
          "code": {
            "type": "string",
            "description": "Código único del Error"
          },
          "message": {
            "type": "string",
            "description": "Mensaje descriptivo del Error"
          },
          "href": {
            "type": "string",
            "description": "Enlace para obtener más información del Error"
          }
        },
        "required": [
          "type",
          "code",
          "message",
          "href"
        ]
      },
      "description": "Error ocurrido"
    }
  },
  "required": [
    "errors"
  ]
}
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Body
{
  "errors": [
    {
      "type": "missing_parameters",
      "code": "ERR-001",
      "message": "Descripción del error",
      "href": "staging.creditar.io/api/documentation#err-001"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "errors": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Tipo del Error"
          },
          "code": {
            "type": "string",
            "description": "Código único del Error"
          },
          "message": {
            "type": "string",
            "description": "Mensaje descriptivo del Error"
          },
          "href": {
            "type": "string",
            "description": "Enlace para obtener más información del Error"
          }
        },
        "required": [
          "type",
          "code",
          "message",
          "href"
        ]
      },
      "description": "Error ocurrido"
    }
  },
  "required": [
    "errors"
  ]
}

Obtener una Estimación
GET/credit_estimates{?product_id,amount_cents,installments_number}

URI Parameters
HideShow
product_id
string (required) Example: 6313ac69-dc0d-45a8-8804-4ac451e1db5c

id del Producto a obtener

amount_cents
number (required) Example: 1000000

Cantidad Solicitada en centavos

installments_number
number (required) Example: 12

Número de Plazos para pagar el crédito


Calificar flujos de Calificación

Calificación

En esta ruta se podrá generar una calificación para el flujo de calificación de una solicitud deseada.

POST staging.creditar.io/qualify_score_flows
Requestsexample 1
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Body
{
  "credit_application_id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21"
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "credit_application_id": {
      "type": "string",
      "description": "ID de la Solicitud a la que se le desea crear la calificación"
    }
  }
}
Responses201422
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21",
      "value": "10",
      "notes": "Valores proporcionados correctamente",
      "passed": true,
      "created_at": "2018-07-02",
      "updated_at": "2018-05-02"
    }
  ],
  "links": [
    {
      "rel": "self",
      "uri": "/qualify_score_flows"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "ID único de la Calificación"
          },
          "value": {
            "type": "string",
            "description": "Valor de la Calificación"
          },
          "notes": {
            "type": "string",
            "description": "Notas de la Calificación"
          },
          "passed": {
            "type": "boolean",
            "description": "Indica si el flujo pasó la Calificación"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación de la Calificación"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación a la Calificación"
          }
        },
        "required": [
          "id",
          "passed",
          "created_at",
          "updated_at"
        ]
      },
      "description": "Calificación del Flujo de Calificación"
    },
    "links": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "rel": {
            "type": "string"
          },
          "uri": {
            "type": "string"
          }
        },
        "required": [
          "rel",
          "uri"
        ]
      },
      "description": "Links a referencias"
    }
  },
  "required": [
    "links"
  ]
}
Headers
Content-Type: application/json
Body
{
  "errors": [
    {
      "type": "not_found",
      "code": "ERR-404",
      "message": "El recurso no existe.",
      "href": "staging.creditar.io/api/documentation#err-404"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "errors": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Tipo del Error"
          },
          "code": {
            "type": "string",
            "description": "Código único del Error"
          },
          "message": {
            "type": "string",
            "description": "Mensaje descriptivo del Error"
          },
          "href": {
            "type": "string",
            "description": "Enlace para obtener más información del Error"
          }
        },
        "required": [
          "type",
          "code",
          "message",
          "href"
        ]
      },
      "description": "Error ocurrido"
    }
  },
  "required": [
    "errors"
  ]
}

Crear una calificación
POST/qualify_score_flows

Crea una nueva calificación para un flujo de calificación. Recibe un objeto JSON con el ID de la Solicitud (credit_application_id) a la que pertenecerá.


Clientes

Cliente es una representación de un Cliente.

Clientes

Esta ruta regresará una lista de Clientes.

GET staging.creditar.io/customers?cursor=5a36f715-1815-453e-81c5-68d0d1f96bc8
Requestsexample 1
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Responses200
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "email": "customer@mail.com",
      "first_name": "Juán",
      "second_name": "Carlos",
      "last_name": "Pérez",
      "mother_name": "García",
      "date_of_birth": "1980-03-24",
      "rfc": "PEGJ800324TR4",
      "curp": "PEGJ800324UT3UDHETL-7",
      "blocked": false,
      "metadata": {},
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "created_at": "2018-05-02",
      "updated_at": "2018-05-02",
      "credit_applications": [
        {
          "id": "636264b1-77a2-45ef-b643-e44cfbc84d40"
        }
      ],
      "credits": [
        {
          "id": "b79a8dff-de7e-4b64-9618-5c7d74bcc233"
        }
      ],
      "attachments": [
        {
          "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e"
        }
      ]
    }
  ],
  "pagination": {
    "cursors": {
      "after": "5a36f715-1815-453e-81c5-68d0d1f96bc8",
      "next_uri": "/customers?cursor=5a36f715-1815-453e-81c5-68d0d1f96bc8"
    }
  },
  "links": [
    {
      "rel": "self",
      "uri": "/customers"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "email": {
            "type": "string",
            "description": "Email del Cliente"
          },
          "first_name": {
            "type": "string",
            "description": "Primer Nombre del Cliente"
          },
          "second_name": {
            "type": "string",
            "description": "Segundo Nombre del Cliente"
          },
          "last_name": {
            "type": "string",
            "description": "Apellido Paterno del Cliente"
          },
          "mother_name": {
            "type": "string",
            "description": "Apellido Materno del Cliente"
          },
          "date_of_birth": {
            "type": [
              "string",
              "null"
            ],
            "description": "Fecha de Nacimiento del Cliente con formato `yyyy-mm-dd`"
          },
          "rfc": {
            "type": [
              "string",
              "null"
            ],
            "description": "RFC del Cliente"
          },
          "curp": {
            "type": [
              "string",
              "null"
            ],
            "description": "CURP del Cliente"
          },
          "blocked": {
            "type": "boolean",
            "description": "Estado del Bloqueo del Cliente"
          },
          "metadata": {
            "type": "object",
            "properties": {},
            "description": "Atributos especiales del Cliente"
          },
          "id": {
            "type": "string",
            "description": "ID único del Cliente"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación del Cliente"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación al Cliente"
          },
          "credit_applications": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "ID único de la Solicitud de Crédito"
                }
              }
            },
            "description": "Solicitudes de Crédito"
          },
          "credits": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "ID único del Crédito"
                }
              }
            },
            "description": "Créditos"
          },
          "attachments": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "ID único del Archivo"
                }
              }
            },
            "description": "Archivos"
          }
        },
        "required": [
          "email",
          "id",
          "created_at",
          "updated_at"
        ]
      },
      "description": "Clientes"
    },
    "pagination": {
      "type": "object",
      "properties": {
        "cursors": {
          "type": "object",
          "properties": {
            "after": {
              "type": "string",
              "description": "Cursor al siguiente registro"
            },
            "next_uri": {
              "type": "string",
              "description": "URL para la siguiente página"
            }
          },
          "required": [
            "after",
            "next_uri"
          ],
          "description": "Cursores"
        }
      },
      "required": [
        "cursors"
      ],
      "description": "Información sobre la Paginación"
    },
    "links": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "rel": {
            "type": "string"
          },
          "uri": {
            "type": "string"
          }
        },
        "required": [
          "rel",
          "uri"
        ]
      },
      "description": "Links a referencias."
    }
  },
  "required": [
    "data",
    "pagination",
    "links"
  ]
}

Listar todos los Clientes
GET/customers{?cursor}

La obtención de la lista de Clientes es una acción paginada. Se puede pasar el parámetro opcional cursor para obtener la siguiente página de Clientes. Esta ruta siempre regresará 20 Clientes por página.

Puedes utilizar algunos de los siguientes parámetros como filtros:

Parámetro Tipo de filtro Descripción
by_metadata JSON Filtra por atributos especiales
by_blocked Boleano Filtra por estado del bloqueo
by_created_at Rango de fecha Filtra por fecha de creación
by_updated_at Rango de fecha Filtra por fecha de última modiificación
URI Parameters
HideShow
cursor
string (required) Example: 5a36f715-1815-453e-81c5-68d0d1f96bc8

Referencia del Cursor utilizado para paginar.


POST staging.creditar.io/customers
Requestsexample 1
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Body
{
  "email": "customer@mail.com",
  "first_name": "Juán",
  "second_name": "Carlos",
  "last_name": "Pérez",
  "mother_name": "García",
  "date_of_birth": "1980-03-24",
  "rfc": "PEGJ800324TR4",
  "curp": "PEGJ800324UT3UDHETL-7",
  "blocked": false,
  "metadata": {},
  "uid": "1"
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "description": "Email del Cliente"
    },
    "first_name": {
      "type": "string",
      "description": "Primer Nombre del Cliente"
    },
    "second_name": {
      "type": "string",
      "description": "Segundo Nombre del Cliente"
    },
    "last_name": {
      "type": "string",
      "description": "Apellido Paterno del Cliente"
    },
    "mother_name": {
      "type": "string",
      "description": "Apellido Materno del Cliente"
    },
    "date_of_birth": {
      "type": [
        "string",
        "null"
      ],
      "description": "Fecha de Nacimiento del Cliente con formato `yyyy-mm-dd`"
    },
    "rfc": {
      "type": [
        "string",
        "null"
      ],
      "description": "RFC del Cliente"
    },
    "curp": {
      "type": [
        "string",
        "null"
      ],
      "description": "CURP del Cliente"
    },
    "blocked": {
      "type": "boolean",
      "description": "Estado del Bloqueo del Cliente"
    },
    "metadata": {
      "type": "object",
      "properties": {},
      "description": "Atributos especiales del Cliente"
    },
    "uid": {
      "type": "string",
      "description": "ID de usuario que realizó última modificación"
    }
  },
  "required": [
    "email"
  ]
}
Responses201422
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "email": "customer@mail.com",
      "first_name": "Juán",
      "second_name": "Carlos",
      "last_name": "Pérez",
      "mother_name": "García",
      "date_of_birth": "1980-03-24",
      "rfc": "PEGJ800324TR4",
      "curp": "PEGJ800324UT3UDHETL-7",
      "blocked": false,
      "metadata": {},
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "created_at": "2018-05-02",
      "updated_at": "2018-05-02",
      "credit_applications": [
        {
          "id": "636264b1-77a2-45ef-b643-e44cfbc84d40"
        }
      ],
      "credits": [
        {
          "id": "b79a8dff-de7e-4b64-9618-5c7d74bcc233"
        }
      ],
      "attachments": [
        {
          "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e"
        }
      ]
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "email": {
            "type": "string",
            "description": "Email del Cliente"
          },
          "first_name": {
            "type": "string",
            "description": "Primer Nombre del Cliente"
          },
          "second_name": {
            "type": "string",
            "description": "Segundo Nombre del Cliente"
          },
          "last_name": {
            "type": "string",
            "description": "Apellido Paterno del Cliente"
          },
          "mother_name": {
            "type": "string",
            "description": "Apellido Materno del Cliente"
          },
          "date_of_birth": {
            "type": [
              "string",
              "null"
            ],
            "description": "Fecha de Nacimiento del Cliente con formato `yyyy-mm-dd`"
          },
          "rfc": {
            "type": [
              "string",
              "null"
            ],
            "description": "RFC del Cliente"
          },
          "curp": {
            "type": [
              "string",
              "null"
            ],
            "description": "CURP del Cliente"
          },
          "blocked": {
            "type": "boolean",
            "description": "Estado del Bloqueo del Cliente"
          },
          "metadata": {
            "type": "object",
            "properties": {},
            "description": "Atributos especiales del Cliente"
          },
          "id": {
            "type": "string",
            "description": "ID único del Cliente"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación del Cliente"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación al Cliente"
          },
          "credit_applications": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "ID único de la Solicitud de Crédito"
                }
              }
            },
            "description": "Solicitudes de Crédito"
          },
          "credits": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "ID único del Crédito"
                }
              }
            },
            "description": "Créditos"
          },
          "attachments": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "ID único del Archivo"
                }
              }
            },
            "description": "Archivos"
          }
        },
        "required": [
          "email",
          "id",
          "created_at",
          "updated_at"
        ]
      },
      "description": "Clientes"
    }
  },
  "required": [
    "data"
  ]
}
Headers
Content-Type: application/json
Body
{
  "errors": [
    {
      "type": "invalid",
      "code": "ERR-196",
      "message": "Existe uno o más Componentes en el Flujo de Calificación que necesitan atención",
      "href": "staging.creditar.io/api/documentation#err-196"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "errors": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Tipo del Error"
          },
          "code": {
            "type": "string",
            "description": "Código único del Error"
          },
          "message": {
            "type": "string",
            "description": "Mensaje descriptivo del Error"
          },
          "href": {
            "type": "string",
            "description": "Enlace para obtener más información del Error"
          }
        },
        "required": [
          "type",
          "code",
          "message",
          "href"
        ]
      },
      "description": "Error ocurrido"
    }
  },
  "required": [
    "errors"
  ]
}

Crear un Cliente
POST/customers

Crea un nuevo Cliente. Recibe un objeto de JSON con los parámetros de un Cliente.


Cliente

GET staging.creditar.io/customers/6315ac69-dc0d-45a8-8804-4ac451e1db5c?include=credit_application,product,credit
Requestsinclude is not setinclude is set to attachmentinclude is set to credit_applicationinclude is set to product
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Responses200404
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "email": "customer@mail.com",
      "first_name": "Juán",
      "second_name": "Carlos",
      "last_name": "Pérez",
      "mother_name": "García",
      "date_of_birth": "1980-03-24",
      "rfc": "PEGJ800324TR4",
      "curp": "PEGJ800324UT3UDHETL-7",
      "blocked": false,
      "metadata": {},
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "created_at": "2018-05-02",
      "updated_at": "2018-05-02",
      "credit_applications": [
        {
          "id": "636264b1-77a2-45ef-b643-e44cfbc84d40"
        }
      ],
      "credits": [
        {
          "id": "b79a8dff-de7e-4b64-9618-5c7d74bcc233"
        }
      ],
      "attachments": [
        {
          "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e"
        }
      ]
    }
  ],
  "links": [
    {
      "rel": "self",
      "uri": "/customers/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    },
    {
      "id": "636264b1-77a2-45ef-b643-e44cfbc84d40",
      "rel": "application",
      "uri": "/applications/636264b1-77a2-45ef-b643-e44cfbc84d40"
    },
    {
      "id": "14e5d573-abe5-4fd0-b1dc-3cf1bed09282",
      "rel": "credit",
      "uri": "/credits/14e5d573-abe5-4fd0-b1dc-3cf1bed09282"
    },
    {
      "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e",
      "rel": "attachment",
      "uri": "/attachments/aabfd43d-6f63-44dd-b7d9-9352a101d11e"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "email": {
            "type": "string",
            "description": "Email del Cliente"
          },
          "first_name": {
            "type": "string",
            "description": "Primer Nombre del Cliente"
          },
          "second_name": {
            "type": "string",
            "description": "Segundo Nombre del Cliente"
          },
          "last_name": {
            "type": "string",
            "description": "Apellido Paterno del Cliente"
          },
          "mother_name": {
            "type": "string",
            "description": "Apellido Materno del Cliente"
          },
          "date_of_birth": {
            "type": [
              "string",
              "null"
            ],
            "description": "Fecha de Nacimiento del Cliente con formato `yyyy-mm-dd`"
          },
          "rfc": {
            "type": [
              "string",
              "null"
            ],
            "description": "RFC del Cliente"
          },
          "curp": {
            "type": [
              "string",
              "null"
            ],
            "description": "CURP del Cliente"
          },
          "blocked": {
            "type": "boolean",
            "description": "Estado del Bloqueo del Cliente"
          },
          "metadata": {
            "type": "object",
            "properties": {},
            "description": "Atributos especiales del Cliente"
          },
          "id": {
            "type": "string",
            "description": "ID único del Cliente"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación del Cliente"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación al Cliente"
          },
          "credit_applications": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "ID único de la Solicitud de Crédito"
                }
              }
            },
            "description": "Solicitudes de Crédito"
          },
          "credits": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "ID único del Crédito"
                }
              }
            },
            "description": "Créditos"
          },
          "attachments": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "ID único del Archivo"
                }
              }
            },
            "description": "Archivos"
          }
        },
        "required": [
          "email",
          "id",
          "created_at",
          "updated_at"
        ]
      },
      "description": "Clientes"
    },
    "links": {
      "type": "array",
      "items": [
        {
          "type": "object",
          "properties": {
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        }
      ],
      "description": "Links a referencias"
    }
  },
  "required": [
    "data",
    "links"
  ]
}
Headers
Content-Type: application/json
Body
{
  "errors": [
    {
      "type": "not_found",
      "code": "ERR-404",
      "message": "El recurso no existe.",
      "href": "staging.creditar.io/api/documentation#err-404"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "errors": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Tipo del Error"
          },
          "code": {
            "type": "string",
            "description": "Código único del Error"
          },
          "message": {
            "type": "string",
            "description": "Mensaje descriptivo del Error"
          },
          "href": {
            "type": "string",
            "description": "Enlace para obtener más información del Error"
          }
        },
        "required": [
          "type",
          "code",
          "message",
          "href"
        ]
      },
      "description": "Error ocurrido"
    }
  },
  "required": [
    "errors"
  ]
}
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Responses200
Headers
Content-Type: application/json
Body
{
  "email": "customer@mail.com",
  "first_name": "Juán",
  "second_name": "Carlos",
  "last_name": "Pérez",
  "mother_name": "García",
  "date_of_birth": "1980-03-24",
  "rfc": "PEGJ800324TR4",
  "curp": "PEGJ800324UT3UDHETL-7",
  "blocked": false,
  "metadata": {},
  "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
  "created_at": "2018-05-02",
  "updated_at": "2018-05-02",
  "attachments": [
    {
      "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21",
      "attachmentable_type": "customer",
      "attachmentable_id": "73676276-221c-40ac-af43-ab2f3f72a48c",
      "attachment_type": "INE",
      "file": "staging.creditar.io/rails/active_storage/blobs/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBFQT09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--19f8c22c36866305fa3878fe3a04e19a0fc6f4d1/WhatsApp%20Image%202018-03-06%20at%208.24.22%20PM.pdf\"",
      "created_at": "2020-04-17T12:55:47.220-05:0"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "description": "Email del Cliente"
    },
    "first_name": {
      "type": "string",
      "description": "Primer Nombre del Cliente"
    },
    "second_name": {
      "type": "string",
      "description": "Segundo Nombre del Cliente"
    },
    "last_name": {
      "type": "string",
      "description": "Apellido Paterno del Cliente"
    },
    "mother_name": {
      "type": "string",
      "description": "Apellido Materno del Cliente"
    },
    "date_of_birth": {
      "type": [
        "string",
        "null"
      ],
      "description": "Fecha de Nacimiento del Cliente con formato `yyyy-mm-dd`"
    },
    "rfc": {
      "type": [
        "string",
        "null"
      ],
      "description": "RFC del Cliente"
    },
    "curp": {
      "type": [
        "string",
        "null"
      ],
      "description": "CURP del Cliente"
    },
    "blocked": {
      "type": "boolean",
      "description": "Estado del Bloqueo del Cliente"
    },
    "metadata": {
      "type": "object",
      "properties": {},
      "description": "Atributos especiales del Cliente"
    },
    "id": {
      "type": "string",
      "description": "ID único del Cliente"
    },
    "created_at": {
      "type": "string",
      "description": "Fecha de Creación del Cliente"
    },
    "updated_at": {
      "type": "string",
      "description": "Última modificación al Cliente"
    },
    "attachments": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "ID único del Archivo"
          },
          "attachmentable_type": {
            "type": "string",
            "description": "Representa el recurso"
          },
          "attachmentable_id": {
            "type": "string",
            "description": "Representa el ID del recurso"
          },
          "attachment_type": {
            "type": "string",
            "description": "Tipo de documento del Archivo"
          },
          "file": {
            "type": "string",
            "description": "URL del Archivo"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación del Archivo"
          }
        },
        "required": [
          "id",
          "attachmentable_type",
          "attachmentable_id",
          "attachment_type",
          "file",
          "created_at"
        ]
      },
      "description": "Archivos"
    }
  },
  "required": [
    "email",
    "id",
    "created_at",
    "updated_at",
    "attachments"
  ]
}
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Responses200
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "email": "customer@mail.com",
      "first_name": "Juán",
      "second_name": "Carlos",
      "last_name": "Pérez",
      "mother_name": "García",
      "date_of_birth": "1980-03-24",
      "rfc": "PEGJ800324TR4",
      "curp": "PEGJ800324UT3UDHETL-7",
      "blocked": false,
      "metadata": {},
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "created_at": "2018-05-02",
      "updated_at": "2018-05-02",
      "credit_applications": [
        {
          "amount_cents": 500000,
          "installments": 12,
          "interest_rate": 20,
          "late_payment_interest": 5,
          "profits_percentage": 45,
          "multiple_output": 3,
          "flow": "inicio",
          "street_address": "Av. Carranza",
          "exterior_number_address": "1248",
          "interior_number_address": "1234",
          "neighborhood_address": "Colinas de Santa Bárbara",
          "state_address": "Colima",
          "city_address": "Villa de Álvarez",
          "zipcode_address": "28017",
          "home_phone": "3121225627",
          "mobile_phone": "3123452287",
          "classificaton": "Pagar deudas",
          "description": "Necesito consolidar deudas con un mejor interés",
          "metadata": {},
          "clabe": "002115016003269411",
          "maximum_penalty_days": 5,
          "payment_days": 20,
          "id": "636264b1-77a2-45ef-b643-e44cfbc84d40",
          "application_number": "UENDSND-1",
          "rejected_at": "2018-05-02",
          "rejected_notes": "No actualizó su documentación a tiempo.",
          "approved_at": "2018-05-02",
          "approved_amount_cents": 0,
          "accepted_at": "2018-05-01",
          "first_payment_date": "2018-05-01",
          "closing_date_at": "2020-02-12",
          "state": "ongoing",
          "i18n_state": "En trámite",
          "maximum_amount_allowed_cents": 0,
          "maximum_credit_allowed": 0,
          "created_at": "2021-09-04T16:28:20.586-05:00",
          "updated_at": "2021-09-04T16:28:20.586-05:00",
          "accessories": [
            {
              "name": "Comisión por apertura",
              "calculation_type": "percentage",
              "calculation_base": "credit#ending_balance",
              "calculate_iva": true,
              "settings": {},
              "days_offset": 0,
              "active": true,
              "fixed_value_cents": 170000,
              "percentage": 1.5,
              "payment_base": "credit#approved_amount"
            }
          ],
          "product": {
            "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c"
          },
          "contract": {
            "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
          },
          "customer": {
            "id": "db2c210f-64a8-46ea-8e83-849b3cba60d4"
          },
          "incomes": [
            {
              "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21"
            }
          ],
          "expenses": [
            {
              "id": "eeedba2e-fc96-4f96-bd2e-bd046b256f96"
            }
          ],
          "references": [
            {
              "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
            }
          ],
          "attachments": [
            {
              "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e"
            }
          ]
        }
      ]
    }
  ],
  "links": [
    {
      "rel": "self",
      "uri": "/customers/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    },
    {
      "id": "636264b1-77a2-45ef-b643-e44cfbc84d40",
      "rel": "application",
      "uri": "/applications/636264b1-77a2-45ef-b643-e44cfbc84d40"
    },
    {
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "rel": "product",
      "uri": "/products/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    },
    {
      "id": "dc65847e-2793-4f96-bf93-26d238825203",
      "rel": "credit",
      "uri": "/credits/dc65847e-2793-4f96-bf93-26d238825203"
    },
    {
      "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e",
      "rel": "attachment",
      "uri": "/attachments/aabfd43d-6f63-44dd-b7d9-9352a101d11e"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "email": {
            "type": "string",
            "description": "Email del Cliente"
          },
          "first_name": {
            "type": "string",
            "description": "Primer Nombre del Cliente"
          },
          "second_name": {
            "type": "string",
            "description": "Segundo Nombre del Cliente"
          },
          "last_name": {
            "type": "string",
            "description": "Apellido Paterno del Cliente"
          },
          "mother_name": {
            "type": "string",
            "description": "Apellido Materno del Cliente"
          },
          "date_of_birth": {
            "type": [
              "string",
              "null"
            ],
            "description": "Fecha de Nacimiento del Cliente con formato `yyyy-mm-dd`"
          },
          "rfc": {
            "type": [
              "string",
              "null"
            ],
            "description": "RFC del Cliente"
          },
          "curp": {
            "type": [
              "string",
              "null"
            ],
            "description": "CURP del Cliente"
          },
          "blocked": {
            "type": "boolean",
            "description": "Estado del Bloqueo del Cliente"
          },
          "metadata": {
            "type": "object",
            "properties": {},
            "description": "Atributos especiales del Cliente"
          },
          "id": {
            "type": "string",
            "description": "ID único del Cliente"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación del Cliente"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación al Cliente"
          },
          "credit_applications": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "amount_cents": {
                  "type": "number",
                  "description": "Total del Crédito Solicitado"
                },
                "installments": {
                  "type": "number",
                  "description": "Número de Plazos de la Solicitud de Crédito"
                },
                "interest_rate": {
                  "type": "number",
                  "description": "Porcentage de interés de la Solicitud de Crédito"
                },
                "late_payment_interest": {
                  "type": "number",
                  "description": "Porcentage de interés moratorio de la Solicitud de Crédito"
                },
                "profits_percentage": {
                  "type": "number",
                  "description": "Porcentage sobre utilidades del Fondo de Inversión Mezzanine"
                },
                "multiple_output": {
                  "type": "number",
                  "description": "Múltiplo de salida del Fondo de Inversión de Capital"
                },
                "flow": {
                  "type": "string",
                  "description": "Paso actual del flujo de la Solicitud de Crédito"
                },
                "street_address": {
                  "type": "string",
                  "description": "Calle"
                },
                "exterior_number_address": {
                  "type": "string",
                  "description": "Número exterior"
                },
                "interior_number_address": {
                  "type": "string",
                  "description": "Número interior"
                },
                "neighborhood_address": {
                  "type": "string",
                  "description": "Colonia"
                },
                "state_address": {
                  "type": "string",
                  "description": "Estado"
                },
                "city_address": {
                  "type": "string",
                  "description": "Ciudad"
                },
                "zipcode_address": {
                  "type": "string",
                  "description": "Código Postal"
                },
                "home_phone": {
                  "type": "string",
                  "description": "Teléfono de Casa"
                },
                "mobile_phone": {
                  "type": "string",
                  "description": "Mobile phone."
                },
                "classificaton": {
                  "type": "string",
                  "description": "Clasificación de la Solicitud de Crédito"
                },
                "description": {
                  "type": "string",
                  "description": "Descripción de la Solicitud de Crédito"
                },
                "metadata": {
                  "type": "object",
                  "properties": {},
                  "description": "Atributos especiales de la Solicitud de Crédito"
                },
                "clabe": {
                  "type": "string",
                  "description": "CLABE"
                },
                "maximum_penalty_days": {
                  "type": "number",
                  "description": "Días máximos de penalizaciones"
                },
                "payment_days": {
                  "type": [
                    "number",
                    "null"
                  ],
                  "description": "Días de pago de la Solicitud de Crédito"
                },
                "id": {
                  "type": "string",
                  "description": "ID único de la Solicitud de Crédito"
                },
                "application_number": {
                  "type": "string",
                  "description": "Número de la Solicitud de Crédito"
                },
                "rejected_at": {
                  "type": "string",
                  "description": "Fecha de Rechazo"
                },
                "rejected_notes": {
                  "type": "string",
                  "description": "Notas del Rechazo"
                },
                "approved_at": {
                  "type": "string",
                  "description": "Fecha de Aprobación"
                },
                "approved_amount_cents": {
                  "type": "number",
                  "description": "Cantidad Aprobada del Crédito Solicitado"
                },
                "accepted_at": {
                  "type": "string",
                  "description": "Fecha de Aceptación"
                },
                "first_payment_date": {
                  "type": "string",
                  "description": "Fecha de pago inicial"
                },
                "closing_date_at": {
                  "type": "string",
                  "description": "Fecha de corte de la Solicitud de Crédito"
                },
                "state": {
                  "type": "string",
                  "description": "Estado actual de la Solicitud de Crédito"
                },
                "i18n_state": {
                  "type": "string",
                  "description": "Traducción del estado actual de la Solicitud de crédito"
                },
                "maximum_amount_allowed_cents": {
                  "type": "number",
                  "description": "Cantidad restante en centavos que puede solicitar el Cliente. Cero si no hay restricción"
                },
                "maximum_credit_allowed": {
                  "type": "number",
                  "description": "Cantidad restante de créditos que puede solicitar el Cliente. Cero si no hay restricción"
                },
                "created_at": {
                  "type": "string",
                  "description": "Fecha de Creación de la Solicitud de Crédito"
                },
                "updated_at": {
                  "type": "string",
                  "description": "Última modificación a la Solicitud de Crédito"
                },
                "accessories": {
                  "type": "array",
                  "description": "Accesorios"
                },
                "product": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "ID único del Producto"
                    }
                  },
                  "description": "Producto de la Solicitud de Crédito"
                },
                "contract": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "ID único del Contrato"
                    }
                  },
                  "description": "Contrato de la Solicitud de Crédito"
                },
                "customer": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "ID único del Cliente"
                    }
                  },
                  "description": "Cliente de la Solicitud del Crédito"
                },
                "incomes": {
                  "type": "array"
                },
                "expenses": {
                  "type": "array"
                },
                "references": {
                  "type": "array"
                },
                "attachments": {
                  "type": "array"
                }
              },
              "required": [
                "id",
                "application_number"
              ]
            },
            "description": "Solicitudes de Crédito"
          }
        },
        "required": [
          "email",
          "id",
          "created_at",
          "updated_at"
        ]
      },
      "description": "Clientes"
    },
    "links": {
      "type": "array",
      "items": [
        {
          "type": "object",
          "properties": {
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        }
      ],
      "description": "Links a referencias"
    }
  },
  "required": [
    "data",
    "links"
  ]
}
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Responses200
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "email": "customer@mail.com",
      "first_name": "Juán",
      "second_name": "Carlos",
      "last_name": "Pérez",
      "mother_name": "García",
      "date_of_birth": "1980-03-24",
      "rfc": "PEGJ800324TR4",
      "curp": "PEGJ800324UT3UDHETL-7",
      "blocked": false,
      "metadata": {},
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "created_at": "2018-05-02",
      "updated_at": "2018-05-02",
      "credit_applications": [
        {
          "amount_cents": 500000,
          "installments": 12,
          "interest_rate": 20,
          "late_payment_interest": 5,
          "profits_percentage": 45,
          "multiple_output": 3,
          "flow": "inicio",
          "street_address": "Av. Carranza",
          "exterior_number_address": "1248",
          "interior_number_address": "1234",
          "neighborhood_address": "Colinas de Santa Bárbara",
          "state_address": "Colima",
          "city_address": "Villa de Álvarez",
          "zipcode_address": "28017",
          "home_phone": "3121225627",
          "mobile_phone": "3123452287",
          "classificaton": "Pagar deudas",
          "description": "Necesito consolidar deudas con un mejor interés",
          "metadata": {},
          "clabe": "002115016003269411",
          "maximum_penalty_days": 5,
          "payment_days": 20,
          "id": "636264b1-77a2-45ef-b643-e44cfbc84d40",
          "application_number": "UENDSND-1",
          "rejected_at": "2018-05-02",
          "rejected_notes": "No actualizó su documentación a tiempo.",
          "approved_at": "2018-05-02",
          "approved_amount_cents": 0,
          "accepted_at": "2018-05-01",
          "first_payment_date": "2018-05-01",
          "closing_date_at": "2020-02-12",
          "state": "ongoing",
          "i18n_state": "En trámite",
          "maximum_amount_allowed_cents": 0,
          "maximum_credit_allowed": 0,
          "created_at": "2021-09-04T16:28:20.586-05:00",
          "updated_at": "2021-09-04T16:28:20.586-05:00",
          "accessories": [
            {
              "name": "Comisión por apertura",
              "calculation_type": "percentage",
              "calculation_base": "credit#ending_balance",
              "calculate_iva": true,
              "settings": {},
              "days_offset": 0,
              "active": true,
              "fixed_value_cents": 170000,
              "percentage": 1.5,
              "payment_base": "credit#approved_amount"
            }
          ],
          "product": {
            "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c"
          },
          "contract": {
            "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
          },
          "customer": {
            "id": "db2c210f-64a8-46ea-8e83-849b3cba60d4"
          },
          "incomes": [
            {
              "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21"
            }
          ],
          "expenses": [
            {
              "id": "eeedba2e-fc96-4f96-bd2e-bd046b256f96"
            }
          ],
          "references": [
            {
              "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
            }
          ],
          "attachments": [
            {
              "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e"
            }
          ]
        }
      ]
    }
  ],
  "links": [
    {
      "rel": "self",
      "uri": "/customers/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    },
    {
      "id": "636264b1-77a2-45ef-b643-e44cfbc84d40",
      "rel": "application",
      "uri": "/applications/636264b1-77a2-45ef-b643-e44cfbc84d40"
    },
    {
      "id": "14e5d573-abe5-4fd0-b1dc-3cf1bed09282",
      "rel": "credit",
      "uri": "/credits/14e5d573-abe5-4fd0-b1dc-3cf1bed09282"
    },
    {
      "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e",
      "rel": "attachment",
      "uri": "/attachments/aabfd43d-6f63-44dd-b7d9-9352a101d11e"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "email": {
            "type": "string",
            "description": "Email del Cliente"
          },
          "first_name": {
            "type": "string",
            "description": "Primer Nombre del Cliente"
          },
          "second_name": {
            "type": "string",
            "description": "Segundo Nombre del Cliente"
          },
          "last_name": {
            "type": "string",
            "description": "Apellido Paterno del Cliente"
          },
          "mother_name": {
            "type": "string",
            "description": "Apellido Materno del Cliente"
          },
          "date_of_birth": {
            "type": [
              "string",
              "null"
            ],
            "description": "Fecha de Nacimiento del Cliente con formato `yyyy-mm-dd`"
          },
          "rfc": {
            "type": [
              "string",
              "null"
            ],
            "description": "RFC del Cliente"
          },
          "curp": {
            "type": [
              "string",
              "null"
            ],
            "description": "CURP del Cliente"
          },
          "blocked": {
            "type": "boolean",
            "description": "Estado del Bloqueo del Cliente"
          },
          "metadata": {
            "type": "object",
            "properties": {},
            "description": "Atributos especiales del Cliente"
          },
          "id": {
            "type": "string",
            "description": "ID único del Cliente"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación del Cliente"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación al Cliente"
          },
          "credit_applications": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "amount_cents": {
                  "type": "number",
                  "description": "Total del Crédito Solicitado"
                },
                "installments": {
                  "type": "number",
                  "description": "Número de Plazos de la Solicitud de Crédito"
                },
                "interest_rate": {
                  "type": "number",
                  "description": "Porcentage de interés de la Solicitud de Crédito"
                },
                "late_payment_interest": {
                  "type": "number",
                  "description": "Porcentage de interés moratorio de la Solicitud de Crédito"
                },
                "profits_percentage": {
                  "type": "number",
                  "description": "Porcentage sobre utilidades del Fondo de Inversión Mezzanine"
                },
                "multiple_output": {
                  "type": "number",
                  "description": "Múltiplo de salida del Fondo de Inversión de Capital"
                },
                "flow": {
                  "type": "string",
                  "description": "Paso actual del flujo de la Solicitud de Crédito"
                },
                "street_address": {
                  "type": "string",
                  "description": "Calle"
                },
                "exterior_number_address": {
                  "type": "string",
                  "description": "Número exterior"
                },
                "interior_number_address": {
                  "type": "string",
                  "description": "Número interior"
                },
                "neighborhood_address": {
                  "type": "string",
                  "description": "Colonia"
                },
                "state_address": {
                  "type": "string",
                  "description": "Estado"
                },
                "city_address": {
                  "type": "string",
                  "description": "Ciudad"
                },
                "zipcode_address": {
                  "type": "string",
                  "description": "Código Postal"
                },
                "home_phone": {
                  "type": "string",
                  "description": "Teléfono de Casa"
                },
                "mobile_phone": {
                  "type": "string",
                  "description": "Mobile phone."
                },
                "classificaton": {
                  "type": "string",
                  "description": "Clasificación de la Solicitud de Crédito"
                },
                "description": {
                  "type": "string",
                  "description": "Descripción de la Solicitud de Crédito"
                },
                "metadata": {
                  "type": "object",
                  "properties": {},
                  "description": "Atributos especiales de la Solicitud de Crédito"
                },
                "clabe": {
                  "type": "string",
                  "description": "CLABE"
                },
                "maximum_penalty_days": {
                  "type": "number",
                  "description": "Días máximos de penalizaciones"
                },
                "payment_days": {
                  "type": [
                    "number",
                    "null"
                  ],
                  "description": "Días de pago de la Solicitud de Crédito"
                },
                "id": {
                  "type": "string",
                  "description": "ID único de la Solicitud de Crédito"
                },
                "application_number": {
                  "type": "string",
                  "description": "Número de la Solicitud de Crédito"
                },
                "rejected_at": {
                  "type": "string",
                  "description": "Fecha de Rechazo"
                },
                "rejected_notes": {
                  "type": "string",
                  "description": "Notas del Rechazo"
                },
                "approved_at": {
                  "type": "string",
                  "description": "Fecha de Aprobación"
                },
                "approved_amount_cents": {
                  "type": "number",
                  "description": "Cantidad Aprobada del Crédito Solicitado"
                },
                "accepted_at": {
                  "type": "string",
                  "description": "Fecha de Aceptación"
                },
                "first_payment_date": {
                  "type": "string",
                  "description": "Fecha de pago inicial"
                },
                "closing_date_at": {
                  "type": "string",
                  "description": "Fecha de corte de la Solicitud de Crédito"
                },
                "state": {
                  "type": "string",
                  "description": "Estado actual de la Solicitud de Crédito"
                },
                "i18n_state": {
                  "type": "string",
                  "description": "Traducción del estado actual de la Solicitud de crédito"
                },
                "maximum_amount_allowed_cents": {
                  "type": "number",
                  "description": "Cantidad restante en centavos que puede solicitar el Cliente. Cero si no hay restricción"
                },
                "maximum_credit_allowed": {
                  "type": "number",
                  "description": "Cantidad restante de créditos que puede solicitar el Cliente. Cero si no hay restricción"
                },
                "created_at": {
                  "type": "string",
                  "description": "Fecha de Creación de la Solicitud de Crédito"
                },
                "updated_at": {
                  "type": "string",
                  "description": "Última modificación a la Solicitud de Crédito"
                },
                "accessories": {
                  "type": "array",
                  "description": "Accesorios"
                },
                "product": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "ID único del Producto"
                    }
                  },
                  "description": "Producto de la Solicitud de Crédito"
                },
                "contract": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "ID único del Contrato"
                    }
                  },
                  "description": "Contrato de la Solicitud de Crédito"
                },
                "customer": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "ID único del Cliente"
                    }
                  },
                  "description": "Cliente de la Solicitud del Crédito"
                },
                "incomes": {
                  "type": "array"
                },
                "expenses": {
                  "type": "array"
                },
                "references": {
                  "type": "array"
                },
                "attachments": {
                  "type": "array"
                }
              },
              "required": [
                "id",
                "application_number"
              ]
            }
          }
        },
        "required": [
          "email",
          "id",
          "created_at",
          "updated_at"
        ]
      },
      "description": "Clientes"
    },
    "links": {
      "type": "array",
      "items": [
        {
          "type": "object",
          "properties": {
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        }
      ],
      "description": "Links a referencias"
    }
  },
  "required": [
    "data",
    "links"
  ]
}

Obtener un Cliente
GET/customers/{id}{?include}

Obtiene un solo Cliente y todos sus detalles. Cuando se utiliza el parámetro include, recursos relacionados son incluidos.

URI Parameters
HideShow
id
string (required) Example: 6315ac69-dc0d-45a8-8804-4ac451e1db5c

ID único del Cliente a obtener

include
string (required) Example: credit_application,product,credit

Cadena de texto para indicar si la respuesta debe incluir recursos relacionados.


PATCH staging.creditar.io/customers/6315ac69-dc0d-45a8-8804-4ac451e1db5c?include=credit_application,product,credit
Requestsexample 1
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Body
{
  "email": "customer@mail.com",
  "first_name": "Juán",
  "second_name": "Carlos",
  "last_name": "Pérez",
  "mother_name": "García",
  "date_of_birth": "1980-03-24",
  "rfc": "PEGJ800324TR4",
  "curp": "PEGJ800324UT3UDHETL-7",
  "blocked": false,
  "metadata": {}
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "email": {
      "type": "string",
      "description": "Email del Cliente"
    },
    "first_name": {
      "type": "string",
      "description": "Primer Nombre del Cliente"
    },
    "second_name": {
      "type": "string",
      "description": "Segundo Nombre del Cliente"
    },
    "last_name": {
      "type": "string",
      "description": "Apellido Paterno del Cliente"
    },
    "mother_name": {
      "type": "string",
      "description": "Apellido Materno del Cliente"
    },
    "date_of_birth": {
      "type": [
        "string",
        "null"
      ],
      "description": "Fecha de Nacimiento del Cliente con formato `yyyy-mm-dd`"
    },
    "rfc": {
      "type": [
        "string",
        "null"
      ],
      "description": "RFC del Cliente"
    },
    "curp": {
      "type": [
        "string",
        "null"
      ],
      "description": "CURP del Cliente"
    },
    "blocked": {
      "type": "boolean",
      "description": "Estado del Bloqueo del Cliente"
    },
    "metadata": {
      "type": "object",
      "properties": {},
      "description": "Atributos especiales del Cliente"
    }
  },
  "required": [
    "email"
  ]
}
Responses202422403404
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "email": "customer@mail.com",
      "first_name": "Juán",
      "second_name": "Carlos",
      "last_name": "Pérez",
      "mother_name": "García",
      "date_of_birth": "1980-03-24",
      "rfc": "PEGJ800324TR4",
      "curp": "PEGJ800324UT3UDHETL-7",
      "blocked": false,
      "metadata": {},
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "created_at": "2018-05-02",
      "updated_at": "2018-05-02",
      "credit_applications": [
        {
          "id": "636264b1-77a2-45ef-b643-e44cfbc84d40"
        }
      ],
      "credits": [
        {
          "id": "b79a8dff-de7e-4b64-9618-5c7d74bcc233"
        }
      ],
      "attachments": [
        {
          "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e"
        }
      ]
    }
  ],
  "links": [
    {
      "rel": "self",
      "uri": "/customers/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "email": {
            "type": "string",
            "description": "Email del Cliente"
          },
          "first_name": {
            "type": "string",
            "description": "Primer Nombre del Cliente"
          },
          "second_name": {
            "type": "string",
            "description": "Segundo Nombre del Cliente"
          },
          "last_name": {
            "type": "string",
            "description": "Apellido Paterno del Cliente"
          },
          "mother_name": {
            "type": "string",
            "description": "Apellido Materno del Cliente"
          },
          "date_of_birth": {
            "type": [
              "string",
              "null"
            ],
            "description": "Fecha de Nacimiento del Cliente con formato `yyyy-mm-dd`"
          },
          "rfc": {
            "type": [
              "string",
              "null"
            ],
            "description": "RFC del Cliente"
          },
          "curp": {
            "type": [
              "string",
              "null"
            ],
            "description": "CURP del Cliente"
          },
          "blocked": {
            "type": "boolean",
            "description": "Estado del Bloqueo del Cliente"
          },
          "metadata": {
            "type": "object",
            "properties": {},
            "description": "Atributos especiales del Cliente"
          },
          "id": {
            "type": "string",
            "description": "ID único del Cliente"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación del Cliente"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación al Cliente"
          },
          "credit_applications": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "ID único de la Solicitud de Crédito"
                }
              }
            },
            "description": "Solicitudes de Crédito"
          },
          "credits": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "ID único del Crédito"
                }
              }
            },
            "description": "Créditos"
          },
          "attachments": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "ID único del Archivo"
                }
              }
            },
            "description": "Archivos"
          }
        },
        "required": [
          "email",
          "id",
          "created_at",
          "updated_at"
        ]
      },
      "description": "Clientes"
    },
    "links": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "rel": {
            "type": "string"
          },
          "uri": {
            "type": "string"
          }
        },
        "required": [
          "rel",
          "uri"
        ]
      },
      "description": "Links a referencias"
    }
  },
  "required": [
    "data",
    "links"
  ]
}
Headers
Content-Type: application/json
Body
{
  "errors": [
    {
      "type": "invalid",
      "code": "ERR-100",
      "message": "El email proporcionado no es válido",
      "href": "staging.creditar.io/api/documentation#err-100"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "errors": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Tipo del Error"
          },
          "code": {
            "type": "string",
            "description": "Código único del Error"
          },
          "message": {
            "type": "string",
            "description": "Mensaje descriptivo del Error"
          },
          "href": {
            "type": "string",
            "description": "Enlace para obtener más información del Error"
          }
        },
        "required": [
          "type",
          "code",
          "message",
          "href"
        ]
      },
      "description": "Error ocurrido"
    }
  },
  "required": [
    "errors"
  ]
}
Headers
Content-Type: application/json
Body
{
  "errors": [
    {
      "type": "blocked",
      "code": "ERR-101",
      "message": "El Cliente no puede estar bloqueado.",
      "href": "staging.creditar.io/api/documentation#err-101"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "errors": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Tipo del Error"
          },
          "code": {
            "type": "string",
            "description": "Código único del Error"
          },
          "message": {
            "type": "string",
            "description": "Mensaje descriptivo del Error"
          },
          "href": {
            "type": "string",
            "description": "Enlance para obtener más información del Error"
          }
        },
        "required": [
          "type",
          "code",
          "message",
          "href"
        ]
      },
      "description": "Error ocurrido"
    }
  },
  "required": [
    "errors"
  ]
}
Headers
Content-Type: application/json
Body
{
  "errors": [
    {
      "type": "not_found",
      "code": "ERR-404",
      "message": "El recurso no existe.",
      "href": "staging.creditar.io/api/documentation#err-404"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "errors": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Tipo del Error"
          },
          "code": {
            "type": "string",
            "description": "Código único del Error"
          },
          "message": {
            "type": "string",
            "description": "Mensaje descriptivo del Error"
          },
          "href": {
            "type": "string",
            "description": "Enlace para obtener más información del Error"
          }
        },
        "required": [
          "type",
          "code",
          "message",
          "href"
        ]
      },
      "description": "Error ocurrido"
    }
  },
  "required": [
    "errors"
  ]
}

Actualizar un Cliente
PATCH/customers/{id}{?include}

Actualiza un Cliente existente. Esta operación solo puede ser ejecutada en Clientes desbloqueados.

URI Parameters
HideShow
id
string (required) Example: 6315ac69-dc0d-45a8-8804-4ac451e1db5c

ID único del Cliente a obtener

include
string (required) Example: credit_application,product,credit

Cadena de texto para indicar si la respuesta debe incluir recursos relacionados.


Existencia de un Cliente

Para consultar la existencia de un Cliente es necesario que el parametro email sea codificado a Base64.

GET staging.creditar.io/exists/customer?email=bHVpc2xvcGV6QGdtYWlsLmNvbQ=
Requestsinclude is not set
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Responses200404
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "customer_id": "6b90eaa9-0cd7-4029-b219-a8f7af0ba3fb"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "customer_id": {
            "type": "string",
            "description": "ID del Cliente"
          }
        },
        "required": [
          "customer_id"
        ]
      },
      "description": "ID del Cliente"
    }
  }
}
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "customer_id": "null"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "customer_id": {
            "type": [
              "string",
              "null"
            ],
            "description": "ID del Cliente"
          }
        },
        "required": [
          "customer_id"
        ]
      },
      "description": "ID del Cliente"
    }
  }
}

Obtener la existencia de un cliente
GET/exists/customer{?email}

Obtiene una respuesta con el ID del cliente.

URI Parameters
HideShow
email
string (optional) Example: bHVpc2xvcGV6QGdtYWlsLmNvbQ=

Correo electrónico codificado en Base64 para buscar el cliente


Solicitudes

Una Solicitud es la representación de una Solicitud de Crédito.

Solicitudes

Esta ruta regresará una lista de Solicitudes de Crédito.

GET staging.creditar.io/applications?cursor=5a36f715-1815-453e-81c5-68d0d1f96bc8
Requestsexample 1
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Responses200
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "amount_cents": 500000,
      "installments": 12,
      "interest_rate": 20,
      "late_payment_interest": 5,
      "profits_percentage": 45,
      "multiple_output": 3,
      "flow": "inicio",
      "street_address": "Av. Carranza",
      "exterior_number_address": "1248",
      "interior_number_address": "1234",
      "neighborhood_address": "Colinas de Santa Bárbara",
      "state_address": "Colima",
      "city_address": "Villa de Álvarez",
      "zipcode_address": "28017",
      "home_phone": "3121225627",
      "mobile_phone": "3123452287",
      "classificaton": "Pagar deudas",
      "description": "Necesito consolidar deudas con un mejor interés",
      "metadata": {},
      "clabe": "002115016003269411",
      "maximum_penalty_days": 5,
      "payment_days": 20,
      "id": "636264b1-77a2-45ef-b643-e44cfbc84d40",
      "application_number": "UENDSND-1",
      "rejected_at": "2018-05-02",
      "rejected_notes": "No actualizó su documentación a tiempo.",
      "approved_at": "2018-05-02",
      "approved_amount_cents": 0,
      "accepted_at": "2018-05-01",
      "first_payment_date": "2018-05-01",
      "closing_date_at": "2020-02-12",
      "state": "ongoing",
      "i18n_state": "En trámite",
      "maximum_amount_allowed_cents": 0,
      "maximum_credit_allowed": 0,
      "created_at": "2021-09-04T16:28:20.586-05:00",
      "updated_at": "2021-09-04T16:28:20.586-05:00",
      "accessories": [
        {
          "name": "Comisión por apertura",
          "calculation_type": "percentage",
          "calculation_base": "credit#ending_balance",
          "calculate_iva": true,
          "settings": {},
          "days_offset": 0,
          "active": true,
          "fixed_value_cents": 170000,
          "percentage": 1.5,
          "payment_base": "credit#approved_amount"
        }
      ],
      "product": {
        "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c"
      },
      "contract": {
        "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
      },
      "customer": {
        "id": "db2c210f-64a8-46ea-8e83-849b3cba60d4"
      },
      "incomes": [
        {
          "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21"
        }
      ],
      "expenses": [
        {
          "id": "eeedba2e-fc96-4f96-bd2e-bd046b256f96"
        }
      ],
      "references": [
        {
          "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
        }
      ],
      "attachments": [
        {
          "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e"
        }
      ]
    }
  ],
  "links": [
    {
      "rel": "self",
      "uri": "/applications"
    }
  ],
  "pagination": {
    "cursors": {
      "after": "5a36f715-1815-453e-81c5-68d0d1f96bc8",
      "next_uri": "/applications?cursor=5a36f715-1815-453e-81c5-68d0d1f96bc8"
    }
  }
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "amount_cents": {
            "type": "number",
            "description": "Total del Crédito Solicitado"
          },
          "installments": {
            "type": "number",
            "description": "Número de Plazos de la Solicitud de Crédito"
          },
          "interest_rate": {
            "type": "number",
            "description": "Porcentage de interés de la Solicitud de Crédito"
          },
          "late_payment_interest": {
            "type": "number",
            "description": "Porcentage de interés moratorio de la Solicitud de Crédito"
          },
          "profits_percentage": {
            "type": "number",
            "description": "Porcentage sobre utilidades del Fondo de Inversión Mezzanine"
          },
          "multiple_output": {
            "type": "number",
            "description": "Múltiplo de salida del Fondo de Inversión de Capital"
          },
          "flow": {
            "type": "string",
            "description": "Paso actual del flujo de la Solicitud de Crédito"
          },
          "street_address": {
            "type": "string",
            "description": "Calle"
          },
          "exterior_number_address": {
            "type": "string",
            "description": "Número exterior"
          },
          "interior_number_address": {
            "type": "string",
            "description": "Número interior"
          },
          "neighborhood_address": {
            "type": "string",
            "description": "Colonia"
          },
          "state_address": {
            "type": "string",
            "description": "Estado"
          },
          "city_address": {
            "type": "string",
            "description": "Ciudad"
          },
          "zipcode_address": {
            "type": "string",
            "description": "Código Postal"
          },
          "home_phone": {
            "type": "string",
            "description": "Teléfono de Casa"
          },
          "mobile_phone": {
            "type": "string",
            "description": "Mobile phone."
          },
          "classificaton": {
            "type": "string",
            "description": "Clasificación de la Solicitud de Crédito"
          },
          "description": {
            "type": "string",
            "description": "Descripción de la Solicitud de Crédito"
          },
          "metadata": {
            "type": "object",
            "properties": {},
            "description": "Atributos especiales de la Solicitud de Crédito"
          },
          "clabe": {
            "type": "string",
            "description": "CLABE"
          },
          "maximum_penalty_days": {
            "type": "number",
            "description": "Días máximos de penalizaciones"
          },
          "payment_days": {
            "type": [
              "number",
              "null"
            ],
            "description": "Días de pago de la Solicitud de Crédito"
          },
          "id": {
            "type": "string",
            "description": "ID único de la Solicitud de Crédito"
          },
          "application_number": {
            "type": "string",
            "description": "Número de la Solicitud de Crédito"
          },
          "rejected_at": {
            "type": "string",
            "description": "Fecha de Rechazo"
          },
          "rejected_notes": {
            "type": "string",
            "description": "Notas del Rechazo"
          },
          "approved_at": {
            "type": "string",
            "description": "Fecha de Aprobación"
          },
          "approved_amount_cents": {
            "type": "number",
            "description": "Cantidad Aprobada del Crédito Solicitado"
          },
          "accepted_at": {
            "type": "string",
            "description": "Fecha de Aceptación"
          },
          "first_payment_date": {
            "type": "string",
            "description": "Fecha de pago inicial"
          },
          "closing_date_at": {
            "type": "string",
            "description": "Fecha de corte de la Solicitud de Crédito"
          },
          "state": {
            "type": "string",
            "description": "Estado actual de la Solicitud de Crédito"
          },
          "i18n_state": {
            "type": "string",
            "description": "Traducción del estado actual de la Solicitud de crédito"
          },
          "maximum_amount_allowed_cents": {
            "type": "number",
            "description": "Cantidad restante en centavos que puede solicitar el Cliente. Cero si no hay restricción"
          },
          "maximum_credit_allowed": {
            "type": "number",
            "description": "Cantidad restante de créditos que puede solicitar el Cliente. Cero si no hay restricción"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación de la Solicitud de Crédito"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación a la Solicitud de Crédito"
          },
          "accessories": {
            "type": "array",
            "description": "Accesorios"
          },
          "product": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Producto"
              }
            },
            "description": "Producto de la Solicitud de Crédito"
          },
          "contract": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Contrato"
              }
            },
            "description": "Contrato de la Solicitud de Crédito"
          },
          "customer": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Cliente"
              }
            },
            "description": "Cliente de la Solicitud del Crédito"
          },
          "incomes": {
            "type": "array"
          },
          "expenses": {
            "type": "array"
          },
          "references": {
            "type": "array"
          },
          "attachments": {
            "type": "array"
          }
        },
        "required": [
          "id",
          "application_number"
        ]
      },
      "description": "Solicitudes de Crédito"
    },
    "links": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "rel": {
            "type": "string"
          },
          "uri": {
            "type": "string"
          }
        },
        "required": [
          "rel",
          "uri"
        ]
      },
      "description": "Links a referencias."
    },
    "pagination": {
      "type": "object",
      "properties": {
        "cursors": {
          "type": "object",
          "properties": {
            "after": {
              "type": "string",
              "description": "Cursor al siguiente registro"
            },
            "next_uri": {
              "type": "string",
              "description": "URL para la siguiente página"
            }
          },
          "required": [
            "after",
            "next_uri"
          ],
          "description": "Cursores"
        }
      },
      "required": [
        "cursors"
      ],
      "description": "Información sobre la Paginación"
    }
  },
  "required": [
    "links",
    "pagination"
  ]
}

Listar todas las Solicitudes
GET/applications{?cursor}

La obtención de la lista de Solicitudes es una acción paginada. Se puede pasar el parámetro opcional cursor para obtener la siguiente página de Solicitudes. Esta ruta siempre regresará 20 Solicitudes por página.

Puedes utilizar algunos de los siguientes parámetros como filtros:

Parámetro Tipo de filtro Descripción
by_customer_id Scope Filtra por uuid del Cliente
by_metadata JSON Filtra por atributos especiales
by_flow Cadena Filtra por paso actual del flujo de la solicitud de crédito
by_classification Cadena Filtra por clasificación de la solicitud de crédito
by_state Cadena Filtra por estado actual de la solicitud de crédito
by_amount_cents Entero Filtra por total del monto solicitado de la solicitud de crédito
by_approved_amount_cents Entero Filtra por cantidad aprobada del crédito solicitado
by_rejected_at Rango de fecha Filtra por fecha de rechazo
by_approved_at Rango de fecha Filtra por fecha de aprobación
by_accepted_at Rango de fecha Filtra por fecha de aceptación
by_created_at Rango de fecha Filtra por fecha de creación
by_updated_at Rango de fecha Filtra por fecha de última modificación
URI Parameters
HideShow
cursor
string (required) Example: 5a36f715-1815-453e-81c5-68d0d1f96bc8

Referencia del Cursor utilizado para paginar.


POST staging.creditar.io/applications
Requestsexample 1
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Body
{
  "amount_cents": 500000,
  "installments": 12,
  "interest_rate": 20,
  "late_payment_interest": 5,
  "profits_percentage": 45,
  "multiple_output": 3,
  "flow": "inicio",
  "street_address": "Av. Carranza",
  "exterior_number_address": "1248",
  "interior_number_address": "1234",
  "neighborhood_address": "Colinas de Santa Bárbara",
  "state_address": "Colima",
  "city_address": "Villa de Álvarez",
  "zipcode_address": "28017",
  "home_phone": "3121225627",
  "mobile_phone": "3123452287",
  "classificaton": "Pagar deudas",
  "description": "Necesito consolidar deudas con un mejor interés",
  "metadata": {},
  "clabe": "002115016003269411",
  "maximum_penalty_days": 5,
  "payment_days": 20,
  "product_id": "8f6e8aae-6c7d-4a8f-9906-587520d2905e",
  "customer_id": "7925d93c-90ff-44e1-aeb0-17bb02e76de5",
  "uid": "1"
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "amount_cents": {
      "type": "number",
      "description": "Total del Crédito Solicitado"
    },
    "installments": {
      "type": "number",
      "description": "Número de Plazos de la Solicitud de Crédito"
    },
    "interest_rate": {
      "type": "number",
      "description": "Porcentage de interés de la Solicitud de Crédito"
    },
    "late_payment_interest": {
      "type": "number",
      "description": "Porcentage de interés moratorio de la Solicitud de Crédito"
    },
    "profits_percentage": {
      "type": "number",
      "description": "Porcentage sobre utilidades del Fondo de Inversión Mezzanine"
    },
    "multiple_output": {
      "type": "number",
      "description": "Múltiplo de salida del Fondo de Inversión de Capital"
    },
    "flow": {
      "type": "string",
      "description": "Paso actual del flujo de la Solicitud de Crédito"
    },
    "street_address": {
      "type": "string",
      "description": "Calle"
    },
    "exterior_number_address": {
      "type": "string",
      "description": "Número exterior"
    },
    "interior_number_address": {
      "type": "string",
      "description": "Número interior"
    },
    "neighborhood_address": {
      "type": "string",
      "description": "Colonia"
    },
    "state_address": {
      "type": "string",
      "description": "Estado"
    },
    "city_address": {
      "type": "string",
      "description": "Ciudad"
    },
    "zipcode_address": {
      "type": "string",
      "description": "Código Postal"
    },
    "home_phone": {
      "type": "string",
      "description": "Teléfono de Casa"
    },
    "mobile_phone": {
      "type": "string",
      "description": "Mobile phone."
    },
    "classificaton": {
      "type": "string",
      "description": "Clasificación de la Solicitud de Crédito"
    },
    "description": {
      "type": "string",
      "description": "Descripción de la Solicitud de Crédito"
    },
    "metadata": {
      "type": "object",
      "properties": {},
      "description": "Atributos especiales de la Solicitud de Crédito"
    },
    "clabe": {
      "type": "string",
      "description": "CLABE"
    },
    "maximum_penalty_days": {
      "type": "number",
      "description": "Días máximos de penalizaciones"
    },
    "payment_days": {
      "type": [
        "number",
        "null"
      ],
      "description": "Días de pago de la Solicitud de Crédito"
    },
    "product_id": {
      "type": "string",
      "description": "ID único del Producto activo"
    },
    "customer_id": {
      "type": "string",
      "description": "ID único del Cliente"
    },
    "uid": {
      "type": "string",
      "description": "ID de usuario que realizó última modificación"
    }
  }
}
Responses201422
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "amount_cents": 500000,
      "installments": 12,
      "interest_rate": 20,
      "late_payment_interest": 5,
      "profits_percentage": 45,
      "multiple_output": 3,
      "flow": "inicio",
      "street_address": "Av. Carranza",
      "exterior_number_address": "1248",
      "interior_number_address": "1234",
      "neighborhood_address": "Colinas de Santa Bárbara",
      "state_address": "Colima",
      "city_address": "Villa de Álvarez",
      "zipcode_address": "28017",
      "home_phone": "3121225627",
      "mobile_phone": "3123452287",
      "classificaton": "Pagar deudas",
      "description": "Necesito consolidar deudas con un mejor interés",
      "metadata": {},
      "clabe": "002115016003269411",
      "maximum_penalty_days": 5,
      "payment_days": 20,
      "id": "636264b1-77a2-45ef-b643-e44cfbc84d40",
      "application_number": "UENDSND-1",
      "rejected_at": "2018-05-02",
      "rejected_notes": "No actualizó su documentación a tiempo.",
      "approved_at": "2018-05-02",
      "approved_amount_cents": 0,
      "accepted_at": "2018-05-01",
      "first_payment_date": "2018-05-01",
      "closing_date_at": "2020-02-12",
      "state": "ongoing",
      "i18n_state": "En trámite",
      "maximum_amount_allowed_cents": 0,
      "maximum_credit_allowed": 0,
      "created_at": "2021-09-04T16:28:20.586-05:00",
      "updated_at": "2021-09-04T16:28:20.586-05:00",
      "accessories": [
        {
          "name": "Comisión por apertura",
          "calculation_type": "percentage",
          "calculation_base": "credit#ending_balance",
          "calculate_iva": true,
          "settings": {},
          "days_offset": 0,
          "active": true,
          "fixed_value_cents": 170000,
          "percentage": 1.5,
          "payment_base": "credit#approved_amount"
        }
      ],
      "product": {
        "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c"
      },
      "contract": {
        "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
      },
      "customer": {
        "id": "db2c210f-64a8-46ea-8e83-849b3cba60d4"
      },
      "incomes": [
        {
          "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21"
        }
      ],
      "expenses": [
        {
          "id": "eeedba2e-fc96-4f96-bd2e-bd046b256f96"
        }
      ],
      "references": [
        {
          "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
        }
      ],
      "attachments": [
        {
          "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e"
        }
      ]
    }
  ],
  "links": [
    {
      "rel": "self",
      "uri": "/applications/636264b1-77a2-45ef-b643-e44cfbc84d40"
    },
    {
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "rel": "product",
      "uri": "/products/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    },
    {
      "id": "4e9ece5f-d4e6-4fcd-bc9b-b437bef23ceb",
      "rel": "contract",
      "uri": "/contracts/4e9ece5f-d4e6-4fcd-bc9b-b437bef23ceb"
    },
    {
      "id": "90bec65b-5dcc-43c6-84d1-9ef98b8c9252",
      "rel": "customer",
      "uri": "/customers/90bec65b-5dcc-43c6-84d1-9ef98b8c9252"
    },
    {
      "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21",
      "rel": "income",
      "uri": "/incomes/3c8b46ce-a5f2-4f25-8280-a80551eacd21"
    },
    {
      "id": "eeedba2e-fc96-4f96-bd2e-bd046b256f96",
      "rel": "expense",
      "uri": "/expenses/eeedba2e-fc96-4f96-bd2e-bd046b256f96"
    },
    {
      "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a",
      "rel": "reference",
      "uri": "/references/0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
    },
    {
      "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e",
      "rel": "attachment",
      "uri": "/attachments/aabfd43d-6f63-44dd-b7d9-9352a101d11e"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "amount_cents": {
            "type": "number",
            "description": "Total del Crédito Solicitado"
          },
          "installments": {
            "type": "number",
            "description": "Número de Plazos de la Solicitud de Crédito"
          },
          "interest_rate": {
            "type": "number",
            "description": "Porcentage de interés de la Solicitud de Crédito"
          },
          "late_payment_interest": {
            "type": "number",
            "description": "Porcentage de interés moratorio de la Solicitud de Crédito"
          },
          "profits_percentage": {
            "type": "number",
            "description": "Porcentage sobre utilidades del Fondo de Inversión Mezzanine"
          },
          "multiple_output": {
            "type": "number",
            "description": "Múltiplo de salida del Fondo de Inversión de Capital"
          },
          "flow": {
            "type": "string",
            "description": "Paso actual del flujo de la Solicitud de Crédito"
          },
          "street_address": {
            "type": "string",
            "description": "Calle"
          },
          "exterior_number_address": {
            "type": "string",
            "description": "Número exterior"
          },
          "interior_number_address": {
            "type": "string",
            "description": "Número interior"
          },
          "neighborhood_address": {
            "type": "string",
            "description": "Colonia"
          },
          "state_address": {
            "type": "string",
            "description": "Estado"
          },
          "city_address": {
            "type": "string",
            "description": "Ciudad"
          },
          "zipcode_address": {
            "type": "string",
            "description": "Código Postal"
          },
          "home_phone": {
            "type": "string",
            "description": "Teléfono de Casa"
          },
          "mobile_phone": {
            "type": "string",
            "description": "Mobile phone."
          },
          "classificaton": {
            "type": "string",
            "description": "Clasificación de la Solicitud de Crédito"
          },
          "description": {
            "type": "string",
            "description": "Descripción de la Solicitud de Crédito"
          },
          "metadata": {
            "type": "object",
            "properties": {},
            "description": "Atributos especiales de la Solicitud de Crédito"
          },
          "clabe": {
            "type": "string",
            "description": "CLABE"
          },
          "maximum_penalty_days": {
            "type": "number",
            "description": "Días máximos de penalizaciones"
          },
          "payment_days": {
            "type": [
              "number",
              "null"
            ],
            "description": "Días de pago de la Solicitud de Crédito"
          },
          "id": {
            "type": "string",
            "description": "ID único de la Solicitud de Crédito"
          },
          "application_number": {
            "type": "string",
            "description": "Número de la Solicitud de Crédito"
          },
          "rejected_at": {
            "type": "string",
            "description": "Fecha de Rechazo"
          },
          "rejected_notes": {
            "type": "string",
            "description": "Notas del Rechazo"
          },
          "approved_at": {
            "type": "string",
            "description": "Fecha de Aprobación"
          },
          "approved_amount_cents": {
            "type": "number",
            "description": "Cantidad Aprobada del Crédito Solicitado"
          },
          "accepted_at": {
            "type": "string",
            "description": "Fecha de Aceptación"
          },
          "first_payment_date": {
            "type": "string",
            "description": "Fecha de pago inicial"
          },
          "closing_date_at": {
            "type": "string",
            "description": "Fecha de corte de la Solicitud de Crédito"
          },
          "state": {
            "type": "string",
            "description": "Estado actual de la Solicitud de Crédito"
          },
          "i18n_state": {
            "type": "string",
            "description": "Traducción del estado actual de la Solicitud de crédito"
          },
          "maximum_amount_allowed_cents": {
            "type": "number",
            "description": "Cantidad restante en centavos que puede solicitar el Cliente. Cero si no hay restricción"
          },
          "maximum_credit_allowed": {
            "type": "number",
            "description": "Cantidad restante de créditos que puede solicitar el Cliente. Cero si no hay restricción"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación de la Solicitud de Crédito"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación a la Solicitud de Crédito"
          },
          "accessories": {
            "type": "array",
            "description": "Accesorios"
          },
          "product": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Producto"
              }
            },
            "description": "Producto de la Solicitud de Crédito"
          },
          "contract": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Contrato"
              }
            },
            "description": "Contrato de la Solicitud de Crédito"
          },
          "customer": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Cliente"
              }
            },
            "description": "Cliente de la Solicitud del Crédito"
          },
          "incomes": {
            "type": "array"
          },
          "expenses": {
            "type": "array"
          },
          "references": {
            "type": "array"
          },
          "attachments": {
            "type": "array"
          }
        },
        "required": [
          "id",
          "application_number"
        ]
      },
      "description": "Solicitudes de Crédito"
    },
    "links": {
      "type": "array",
      "items": [
        {
          "type": "object",
          "properties": {
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        }
      ],
      "description": "Links a referencias"
    }
  }
}
Headers
Content-Type: application/json
Body
{
  "errors": [
    {
      "type": "inactive",
      "code": "ERR-120",
      "message": "El Producto debe estar activo.",
      "href": "staging.creditar.io/api/documentation#err-120"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "errors": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Tipo del Error"
          },
          "code": {
            "type": "string",
            "description": "Código único del Error"
          },
          "message": {
            "type": "string",
            "description": "Mensaje descriptivo del Error"
          },
          "href": {
            "type": "string",
            "description": "Enlace para obtener más información del Error"
          }
        },
        "required": [
          "type",
          "code",
          "message",
          "href"
        ]
      },
      "description": "Error ocurrido"
    }
  },
  "required": [
    "errors"
  ]
}

Crear una Solicitud
POST/applications

Crea una nueva Solicitud. Recibe un objeto de JSON con el product_id y customer_id.


Solicitud

GET staging.creditar.io/applications/636264b1-77a2-45ef-b643-e44cfbc84d40?include=product,contract,income,expense,reference,attachment
Requestsinclude is not setinclude is set to customerinclude is set to productinclude is set to contractinclude is set to incomeinclude is set to expenseinclude is set to referenceinclude is set to attachmentinclude is set to customer,product,contract,income,expense,reference,attachment
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Responses200404
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "amount_cents": 500000,
      "installments": 12,
      "interest_rate": 20,
      "late_payment_interest": 5,
      "profits_percentage": 45,
      "multiple_output": 3,
      "flow": "inicio",
      "street_address": "Av. Carranza",
      "exterior_number_address": "1248",
      "interior_number_address": "1234",
      "neighborhood_address": "Colinas de Santa Bárbara",
      "state_address": "Colima",
      "city_address": "Villa de Álvarez",
      "zipcode_address": "28017",
      "home_phone": "3121225627",
      "mobile_phone": "3123452287",
      "classificaton": "Pagar deudas",
      "description": "Necesito consolidar deudas con un mejor interés",
      "metadata": {},
      "clabe": "002115016003269411",
      "maximum_penalty_days": 5,
      "payment_days": 20,
      "id": "636264b1-77a2-45ef-b643-e44cfbc84d40",
      "application_number": "UENDSND-1",
      "rejected_at": "2018-05-02",
      "rejected_notes": "No actualizó su documentación a tiempo.",
      "approved_at": "2018-05-02",
      "approved_amount_cents": 0,
      "accepted_at": "2018-05-01",
      "first_payment_date": "2018-05-01",
      "closing_date_at": "2020-02-12",
      "state": "ongoing",
      "i18n_state": "En trámite",
      "maximum_amount_allowed_cents": 0,
      "maximum_credit_allowed": 0,
      "created_at": "2021-09-04T16:28:20.586-05:00",
      "updated_at": "2021-09-04T16:28:20.586-05:00",
      "accessories": [
        {
          "name": "Comisión por apertura",
          "calculation_type": "percentage",
          "calculation_base": "credit#ending_balance",
          "calculate_iva": true,
          "settings": {},
          "days_offset": 0,
          "active": true,
          "fixed_value_cents": 170000,
          "percentage": 1.5,
          "payment_base": "credit#approved_amount"
        }
      ],
      "product": {
        "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c"
      },
      "contract": {
        "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
      },
      "customer": {
        "id": "db2c210f-64a8-46ea-8e83-849b3cba60d4"
      },
      "incomes": [
        {
          "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21"
        }
      ],
      "expenses": [
        {
          "id": "eeedba2e-fc96-4f96-bd2e-bd046b256f96"
        }
      ],
      "references": [
        {
          "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
        }
      ],
      "attachments": [
        {
          "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e"
        }
      ]
    }
  ],
  "links": [
    {
      "rel": "self",
      "uri": "/applications/636264b1-77a2-45ef-b643-e44cfbc84d40"
    },
    {
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "rel": "product",
      "uri": "/products/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    },
    {
      "id": "4e9ece5f-d4e6-4fcd-bc9b-b437bef23ceb",
      "rel": "contract",
      "uri": "/contracts/4e9ece5f-d4e6-4fcd-bc9b-b437bef23ceb"
    },
    {
      "id": "90bec65b-5dcc-43c6-84d1-9ef98b8c9252",
      "rel": "customer",
      "uri": "/customers/90bec65b-5dcc-43c6-84d1-9ef98b8c9252"
    },
    {
      "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21",
      "rel": "income",
      "uri": "/incomes/3c8b46ce-a5f2-4f25-8280-a80551eacd21"
    },
    {
      "id": "eeedba2e-fc96-4f96-bd2e-bd046b256f96",
      "rel": "expense",
      "uri": "/expenses/eeedba2e-fc96-4f96-bd2e-bd046b256f96"
    },
    {
      "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a",
      "rel": "reference",
      "uri": "/references/0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
    },
    {
      "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e",
      "rel": "attachment",
      "uri": "/attachments/aabfd43d-6f63-44dd-b7d9-9352a101d11e"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "amount_cents": {
            "type": "number",
            "description": "Total del Crédito Solicitado"
          },
          "installments": {
            "type": "number",
            "description": "Número de Plazos de la Solicitud de Crédito"
          },
          "interest_rate": {
            "type": "number",
            "description": "Porcentage de interés de la Solicitud de Crédito"
          },
          "late_payment_interest": {
            "type": "number",
            "description": "Porcentage de interés moratorio de la Solicitud de Crédito"
          },
          "profits_percentage": {
            "type": "number",
            "description": "Porcentage sobre utilidades del Fondo de Inversión Mezzanine"
          },
          "multiple_output": {
            "type": "number",
            "description": "Múltiplo de salida del Fondo de Inversión de Capital"
          },
          "flow": {
            "type": "string",
            "description": "Paso actual del flujo de la Solicitud de Crédito"
          },
          "street_address": {
            "type": "string",
            "description": "Calle"
          },
          "exterior_number_address": {
            "type": "string",
            "description": "Número exterior"
          },
          "interior_number_address": {
            "type": "string",
            "description": "Número interior"
          },
          "neighborhood_address": {
            "type": "string",
            "description": "Colonia"
          },
          "state_address": {
            "type": "string",
            "description": "Estado"
          },
          "city_address": {
            "type": "string",
            "description": "Ciudad"
          },
          "zipcode_address": {
            "type": "string",
            "description": "Código Postal"
          },
          "home_phone": {
            "type": "string",
            "description": "Teléfono de Casa"
          },
          "mobile_phone": {
            "type": "string",
            "description": "Mobile phone."
          },
          "classificaton": {
            "type": "string",
            "description": "Clasificación de la Solicitud de Crédito"
          },
          "description": {
            "type": "string",
            "description": "Descripción de la Solicitud de Crédito"
          },
          "metadata": {
            "type": "object",
            "properties": {},
            "description": "Atributos especiales de la Solicitud de Crédito"
          },
          "clabe": {
            "type": "string",
            "description": "CLABE"
          },
          "maximum_penalty_days": {
            "type": "number",
            "description": "Días máximos de penalizaciones"
          },
          "payment_days": {
            "type": [
              "number",
              "null"
            ],
            "description": "Días de pago de la Solicitud de Crédito"
          },
          "id": {
            "type": "string",
            "description": "ID único de la Solicitud de Crédito"
          },
          "application_number": {
            "type": "string",
            "description": "Número de la Solicitud de Crédito"
          },
          "rejected_at": {
            "type": "string",
            "description": "Fecha de Rechazo"
          },
          "rejected_notes": {
            "type": "string",
            "description": "Notas del Rechazo"
          },
          "approved_at": {
            "type": "string",
            "description": "Fecha de Aprobación"
          },
          "approved_amount_cents": {
            "type": "number",
            "description": "Cantidad Aprobada del Crédito Solicitado"
          },
          "accepted_at": {
            "type": "string",
            "description": "Fecha de Aceptación"
          },
          "first_payment_date": {
            "type": "string",
            "description": "Fecha de pago inicial"
          },
          "closing_date_at": {
            "type": "string",
            "description": "Fecha de corte de la Solicitud de Crédito"
          },
          "state": {
            "type": "string",
            "description": "Estado actual de la Solicitud de Crédito"
          },
          "i18n_state": {
            "type": "string",
            "description": "Traducción del estado actual de la Solicitud de crédito"
          },
          "maximum_amount_allowed_cents": {
            "type": "number",
            "description": "Cantidad restante en centavos que puede solicitar el Cliente. Cero si no hay restricción"
          },
          "maximum_credit_allowed": {
            "type": "number",
            "description": "Cantidad restante de créditos que puede solicitar el Cliente. Cero si no hay restricción"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación de la Solicitud de Crédito"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación a la Solicitud de Crédito"
          },
          "accessories": {
            "type": "array",
            "description": "Accesorios"
          },
          "product": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Producto"
              }
            },
            "description": "Producto de la Solicitud de Crédito"
          },
          "contract": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Contrato"
              }
            },
            "description": "Contrato de la Solicitud de Crédito"
          },
          "customer": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Cliente"
              }
            },
            "description": "Cliente de la Solicitud del Crédito"
          },
          "incomes": {
            "type": "array"
          },
          "expenses": {
            "type": "array"
          },
          "references": {
            "type": "array"
          },
          "attachments": {
            "type": "array"
          }
        },
        "required": [
          "id",
          "application_number"
        ]
      },
      "description": "Solicitudes de Crédito"
    },
    "links": {
      "type": "array",
      "items": [
        {
          "type": "object",
          "properties": {
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        }
      ],
      "description": "Links a referencias"
    }
  }
}
Headers
Content-Type: application/json
Body
{
  "errors": [
    {
      "type": "not_found",
      "code": "ERR-404",
      "message": "El recurso no existe",
      "href": "staging.creditar.io/api/documentation#err-404"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "errors": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Tipo del Error"
          },
          "code": {
            "type": "string",
            "description": "Código único del Error"
          },
          "message": {
            "type": "string",
            "description": "Mensaje descriptivo del Error"
          },
          "href": {
            "type": "string",
            "description": "Enlace para obtener más información del Error"
          }
        },
        "required": [
          "type",
          "code",
          "message",
          "href"
        ]
      },
      "description": "Error ocurrido"
    }
  },
  "required": [
    "errors"
  ]
}
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Responses200
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "amount_cents": 500000,
      "installments": 12,
      "interest_rate": 20,
      "late_payment_interest": 5,
      "profits_percentage": 45,
      "multiple_output": 3,
      "flow": "inicio",
      "street_address": "Av. Carranza",
      "exterior_number_address": "1248",
      "interior_number_address": "1234",
      "neighborhood_address": "Colinas de Santa Bárbara",
      "state_address": "Colima",
      "city_address": "Villa de Álvarez",
      "zipcode_address": "28017",
      "home_phone": "3121225627",
      "mobile_phone": "3123452287",
      "classificaton": "Pagar deudas",
      "description": "Necesito consolidar deudas con un mejor interés",
      "metadata": {},
      "clabe": "002115016003269411",
      "maximum_penalty_days": 5,
      "payment_days": 20,
      "id": "636264b1-77a2-45ef-b643-e44cfbc84d40",
      "application_number": "UENDSND-1",
      "rejected_at": "2018-05-02",
      "rejected_notes": "No actualizó su documentación a tiempo.",
      "approved_at": "2018-05-02",
      "approved_amount_cents": 0,
      "accepted_at": "2018-05-01",
      "first_payment_date": "2018-05-01",
      "closing_date_at": "2020-02-12",
      "state": "ongoing",
      "i18n_state": "En trámite",
      "maximum_amount_allowed_cents": 0,
      "maximum_credit_allowed": 0,
      "created_at": "2021-09-04T16:28:20.586-05:00",
      "updated_at": "2021-09-04T16:28:20.586-05:00",
      "accessories": [
        {
          "name": "Comisión por apertura",
          "calculation_type": "percentage",
          "calculation_base": "credit#ending_balance",
          "calculate_iva": true,
          "settings": {},
          "days_offset": 0,
          "active": true,
          "fixed_value_cents": 170000,
          "percentage": 1.5,
          "payment_base": "credit#approved_amount"
        }
      ],
      "product": {
        "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c"
      },
      "contract": {
        "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
      },
      "customer": {
        "email": "customer@mail.com",
        "first_name": "Juán",
        "second_name": "Carlos",
        "last_name": "Pérez",
        "mother_name": "García",
        "date_of_birth": "1980-03-24",
        "rfc": "PEGJ800324TR4",
        "curp": "PEGJ800324UT3UDHETL-7",
        "blocked": false,
        "metadata": {},
        "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
        "created_at": "2018-05-02",
        "updated_at": "2018-05-02",
        "credit_applications": [
          {
            "id": "636264b1-77a2-45ef-b643-e44cfbc84d40"
          }
        ],
        "credits": [
          {
            "id": "b79a8dff-de7e-4b64-9618-5c7d74bcc233"
          }
        ],
        "attachments": [
          {
            "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e"
          }
        ]
      },
      "incomes": [
        {
          "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21"
        }
      ],
      "expenses": [
        {
          "id": "eeedba2e-fc96-4f96-bd2e-bd046b256f96"
        }
      ],
      "references": [
        {
          "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
        }
      ],
      "attachments": [
        {
          "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e"
        }
      ]
    }
  ],
  "links": [
    {
      "rel": "self",
      "uri": "/applications/636264b1-77a2-45ef-b643-e44cfbc84d40"
    },
    {
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "rel": "product",
      "uri": "/products/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    },
    {
      "id": "4e9ece5f-d4e6-4fcd-bc9b-b437bef23ceb",
      "rel": "contract",
      "uri": "/contracts/4e9ece5f-d4e6-4fcd-bc9b-b437bef23ceb"
    },
    {
      "id": "90bec65b-5dcc-43c6-84d1-9ef98b8c9252",
      "rel": "customer",
      "uri": "/customers/90bec65b-5dcc-43c6-84d1-9ef98b8c9252"
    },
    {
      "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21",
      "rel": "income",
      "uri": "/incomes/3c8b46ce-a5f2-4f25-8280-a80551eacd21"
    },
    {
      "id": "eeedba2e-fc96-4f96-bd2e-bd046b256f96",
      "rel": "expense",
      "uri": "/expenses/eeedba2e-fc96-4f96-bd2e-bd046b256f96"
    },
    {
      "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a",
      "rel": "reference",
      "uri": "/references/0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
    },
    {
      "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e",
      "rel": "attachment",
      "uri": "/attachments/aabfd43d-6f63-44dd-b7d9-9352a101d11e"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "description": "Solicitudes de crédito"
    },
    "links": {
      "type": "array",
      "description": "Links a referencias"
    }
  }
}
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Responses200
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "amount_cents": 500000,
      "installments": 12,
      "interest_rate": 20,
      "late_payment_interest": 5,
      "profits_percentage": 45,
      "multiple_output": 3,
      "flow": "inicio",
      "street_address": "Av. Carranza",
      "exterior_number_address": "1248",
      "interior_number_address": "1234",
      "neighborhood_address": "Colinas de Santa Bárbara",
      "state_address": "Colima",
      "city_address": "Villa de Álvarez",
      "zipcode_address": "28017",
      "home_phone": "3121225627",
      "mobile_phone": "3123452287",
      "classificaton": "Pagar deudas",
      "description": "Necesito consolidar deudas con un mejor interés",
      "metadata": {},
      "clabe": "002115016003269411",
      "maximum_penalty_days": 5,
      "payment_days": 20,
      "id": "636264b1-77a2-45ef-b643-e44cfbc84d40",
      "application_number": "UENDSND-1",
      "rejected_at": "2018-05-02",
      "rejected_notes": "No actualizó su documentación a tiempo.",
      "approved_at": "2018-05-02",
      "approved_amount_cents": 0,
      "accepted_at": "2018-05-01",
      "first_payment_date": "2018-05-01",
      "closing_date_at": "2020-02-12",
      "state": "ongoing",
      "i18n_state": "En trámite",
      "maximum_amount_allowed_cents": 0,
      "maximum_credit_allowed": 0,
      "created_at": "2021-09-04T16:28:20.586-05:00",
      "updated_at": "2021-09-04T16:28:20.586-05:00",
      "accessories": [
        {
          "name": "Comisión por apertura",
          "calculation_type": "percentage",
          "calculation_base": "credit#ending_balance",
          "calculate_iva": true,
          "settings": {},
          "days_offset": 0,
          "active": true,
          "fixed_value_cents": 170000,
          "percentage": 1.5,
          "payment_base": "credit#approved_amount"
        }
      ],
      "product": {
        "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
        "short_name": "un-pago",
        "name": "Crédito a un sólo pago",
        "interest_rate": 20,
        "interest_rate_days": 360,
        "tax": 16,
        "description": "Crédito a sólo pago...",
        "crowdfunding": true,
        "payment_periodicity_label": "Mensual",
        "payment_periodicity_value": 30,
        "default_amount_cents": 500000,
        "minimum_amount_cents": 200000,
        "maximum_amount_cents": 700000,
        "installments_number": 1,
        "installments_minimum": 1,
        "installments_maximum": 3,
        "late_payment_interest": 10,
        "payment_days": 20,
        "created_at": "2018-05-02",
        "updated_at": "2018-05-02"
      },
      "contract": {
        "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
      },
      "customer": {
        "id": "db2c210f-64a8-46ea-8e83-849b3cba60d4"
      },
      "incomes": [
        {
          "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21"
        }
      ],
      "expenses": [
        {
          "id": "eeedba2e-fc96-4f96-bd2e-bd046b256f96"
        }
      ],
      "references": [
        {
          "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
        }
      ],
      "attachments": [
        {
          "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e"
        }
      ]
    }
  ],
  "links": [
    {
      "rel": "self"
    },
    {
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "rel": "product",
      "uri": "/products/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "amount_cents": {
            "type": "number",
            "description": "Total del Crédito Solicitado"
          },
          "installments": {
            "type": "number",
            "description": "Número de Plazos de la Solicitud de Crédito"
          },
          "interest_rate": {
            "type": "number",
            "description": "Porcentage de interés de la Solicitud de Crédito"
          },
          "late_payment_interest": {
            "type": "number",
            "description": "Porcentage de interés moratorio de la Solicitud de Crédito"
          },
          "profits_percentage": {
            "type": "number",
            "description": "Porcentage sobre utilidades del Fondo de Inversión Mezzanine"
          },
          "multiple_output": {
            "type": "number",
            "description": "Múltiplo de salida del Fondo de Inversión de Capital"
          },
          "flow": {
            "type": "string",
            "description": "Paso actual del flujo de la Solicitud de Crédito"
          },
          "street_address": {
            "type": "string",
            "description": "Calle"
          },
          "exterior_number_address": {
            "type": "string",
            "description": "Número exterior"
          },
          "interior_number_address": {
            "type": "string",
            "description": "Número interior"
          },
          "neighborhood_address": {
            "type": "string",
            "description": "Colonia"
          },
          "state_address": {
            "type": "string",
            "description": "Estado"
          },
          "city_address": {
            "type": "string",
            "description": "Ciudad"
          },
          "zipcode_address": {
            "type": "string",
            "description": "Código Postal"
          },
          "home_phone": {
            "type": "string",
            "description": "Teléfono de Casa"
          },
          "mobile_phone": {
            "type": "string",
            "description": "Mobile phone."
          },
          "classificaton": {
            "type": "string",
            "description": "Clasificación de la Solicitud de Crédito"
          },
          "description": {
            "type": "string",
            "description": "Descripción de la Solicitud de Crédito"
          },
          "metadata": {
            "type": "object",
            "properties": {},
            "description": "Atributos especiales de la Solicitud de Crédito"
          },
          "clabe": {
            "type": "string",
            "description": "CLABE"
          },
          "maximum_penalty_days": {
            "type": "number",
            "description": "Días máximos de penalizaciones"
          },
          "payment_days": {
            "type": [
              "number",
              "null"
            ],
            "description": "Días de pago de la Solicitud de Crédito"
          },
          "id": {
            "type": "string",
            "description": "ID único de la Solicitud de Crédito"
          },
          "application_number": {
            "type": "string",
            "description": "Número de la Solicitud de Crédito"
          },
          "rejected_at": {
            "type": "string",
            "description": "Fecha de Rechazo"
          },
          "rejected_notes": {
            "type": "string",
            "description": "Notas del Rechazo"
          },
          "approved_at": {
            "type": "string",
            "description": "Fecha de Aprobación"
          },
          "approved_amount_cents": {
            "type": "number",
            "description": "Cantidad Aprobada del Crédito Solicitado"
          },
          "accepted_at": {
            "type": "string",
            "description": "Fecha de Aceptación"
          },
          "first_payment_date": {
            "type": "string",
            "description": "Fecha de pago inicial"
          },
          "closing_date_at": {
            "type": "string",
            "description": "Fecha de corte de la Solicitud de Crédito"
          },
          "state": {
            "type": "string",
            "description": "Estado actual de la Solicitud de Crédito"
          },
          "i18n_state": {
            "type": "string",
            "description": "Traducción del estado actual de la Solicitud de crédito"
          },
          "maximum_amount_allowed_cents": {
            "type": "number",
            "description": "Cantidad restante en centavos que puede solicitar el Cliente. Cero si no hay restricción"
          },
          "maximum_credit_allowed": {
            "type": "number",
            "description": "Cantidad restante de créditos que puede solicitar el Cliente. Cero si no hay restricción"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación de la Solicitud de Crédito"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación a la Solicitud de Crédito"
          },
          "accessories": {
            "type": "array",
            "description": "Accesorios"
          },
          "product": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Producto"
              },
              "short_name": {
                "type": "string",
                "description": "Nombre corto del Producto"
              },
              "name": {
                "type": "string",
                "description": "Nombre completo del Producto"
              },
              "interest_rate": {
                "type": "number",
                "description": "Cantidad en porcentaje del Interés del Producto"
              },
              "interest_rate_days": {
                "type": "number",
                "description": "Número de Días de tasa de interés del Producto"
              },
              "tax": {
                "type": "number",
                "description": "IVA del Producto"
              },
              "description": {
                "type": "string",
                "description": "Descripción del Producto"
              },
              "crowdfunding": {
                "type": "boolean",
                "description": "Recaudación de fondos"
              },
              "payment_periodicity_label": {
                "type": "string",
                "description": "Nombre del valor del Catalogo de Periodicidad de Pago del Producto"
              },
              "payment_periodicity_value": {
                "type": "number",
                "description": "Número de la Periodicidad de Pago del Producto"
              },
              "default_amount_cents": {
                "type": "number",
                "description": "Cantidad default en centavos del Crédito del Producto"
              },
              "minimum_amount_cents": {
                "type": "number",
                "description": "Cantidad mínima en centavos del Crédito del Producto"
              },
              "maximum_amount_cents": {
                "type": "number",
                "description": "Cantidad máxima en centavos del Crédito del Producto"
              },
              "installments_number": {
                "type": "number",
                "description": "Número de Plazos del Producto"
              },
              "installments_minimum": {
                "type": "number",
                "description": "Número mínimo de Plazos del Producto"
              },
              "installments_maximum": {
                "type": "number",
                "description": "Número máximo de Plazos del Producto"
              },
              "late_payment_interest": {
                "type": "number",
                "description": "Porcentaje del Interés moratorio del Producto"
              },
              "payment_days": {
                "type": "number",
                "description": "Número de días para pagar después de la fecha de corte"
              },
              "created_at": {
                "type": "string",
                "description": "Fecha de Creación del Producto"
              },
              "updated_at": {
                "type": "string",
                "description": "Última modificación del Producto"
              }
            },
            "required": [
              "id",
              "short_name",
              "name",
              "interest_rate",
              "interest_rate_days",
              "tax",
              "description",
              "crowdfunding",
              "payment_periodicity_label",
              "payment_periodicity_value",
              "default_amount_cents",
              "minimum_amount_cents",
              "maximum_amount_cents",
              "installments_number",
              "installments_minimum",
              "installments_maximum",
              "late_payment_interest",
              "payment_days",
              "created_at",
              "updated_at"
            ],
            "additionalProperties": false,
            "description": "Producto de la Solicitud de Crédito"
          },
          "contract": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Contrato"
              }
            },
            "description": "Contrato de la Solicitud de Crédito"
          },
          "customer": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Cliente"
              }
            },
            "description": "Cliente de la Solicitud del Crédito"
          },
          "incomes": {
            "type": "array"
          },
          "expenses": {
            "type": "array"
          },
          "references": {
            "type": "array"
          },
          "attachments": {
            "type": "array"
          }
        },
        "required": [
          "id",
          "application_number"
        ]
      },
      "description": "Solicitudes de Crédito"
    },
    "links": {
      "type": "array",
      "items": [
        {
          "type": "object",
          "properties": {
            "rel": {
              "type": "string"
            }
          },
          "required": [
            "rel"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        }
      ],
      "description": "Links a referencias"
    }
  },
  "required": [
    "data",
    "links"
  ]
}
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Responses200
Headers
Content-Type: application/json
Body
{
  "data": {
    "amount_cents": 500000,
    "installments": 12,
    "interest_rate": 20,
    "late_payment_interest": 5,
    "profits_percentage": 45,
    "multiple_output": 3,
    "flow": "inicio",
    "street_address": "Av. Carranza",
    "exterior_number_address": "1248",
    "interior_number_address": "1234",
    "neighborhood_address": "Colinas de Santa Bárbara",
    "state_address": "Colima",
    "city_address": "Villa de Álvarez",
    "zipcode_address": "28017",
    "home_phone": "3121225627",
    "mobile_phone": "3123452287",
    "classificaton": "Pagar deudas",
    "description": "Necesito consolidar deudas con un mejor interés",
    "metadata": {},
    "clabe": "002115016003269411",
    "maximum_penalty_days": 5,
    "payment_days": 20,
    "id": "636264b1-77a2-45ef-b643-e44cfbc84d40",
    "application_number": "UENDSND-1",
    "rejected_at": "2018-05-02",
    "rejected_notes": "No actualizó su documentación a tiempo.",
    "approved_at": "2018-05-02",
    "approved_amount_cents": 0,
    "accepted_at": "2018-05-01",
    "first_payment_date": "2018-05-01",
    "closing_date_at": "2020-02-12",
    "state": "ongoing",
    "i18n_state": "En trámite",
    "maximum_amount_allowed_cents": 0,
    "maximum_credit_allowed": 0,
    "created_at": "2021-09-04T16:28:20.586-05:00",
    "updated_at": "2021-09-04T16:28:20.586-05:00",
    "accessories": [
      {
        "name": "Comisión por apertura",
        "calculation_type": "percentage",
        "calculation_base": "credit#ending_balance",
        "calculate_iva": true,
        "settings": {},
        "days_offset": 0,
        "active": true,
        "fixed_value_cents": 170000,
        "percentage": 1.5,
        "payment_base": "credit#approved_amount"
      }
    ],
    "product": {
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    },
    "contract": {
      "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a",
      "title": "Título del contrato",
      "body": "Contrato del Crédito..."
    },
    "customer": {
      "id": "db2c210f-64a8-46ea-8e83-849b3cba60d4"
    },
    "incomes": [
      {
        "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21"
      }
    ],
    "expenses": [
      {
        "id": "eeedba2e-fc96-4f96-bd2e-bd046b256f96"
      }
    ],
    "references": [
      {
        "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
      }
    ],
    "attachments": [
      {
        "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e"
      }
    ]
  },
  "links": [
    {
      "rel": "self"
    },
    {
      "id": "4e9ece5f-d4e6-4fcd-bc9b-b437bef23ceb",
      "rel": "contract",
      "uri": "/contracts/4e9ece5f-d4e6-4fcd-bc9b-b437bef23ceb"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "object",
      "properties": {
        "amount_cents": {
          "type": "number",
          "description": "Total del Crédito Solicitado"
        },
        "installments": {
          "type": "number",
          "description": "Número de Plazos de la Solicitud de Crédito"
        },
        "interest_rate": {
          "type": "number",
          "description": "Porcentage de interés de la Solicitud de Crédito"
        },
        "late_payment_interest": {
          "type": "number",
          "description": "Porcentage de interés moratorio de la Solicitud de Crédito"
        },
        "profits_percentage": {
          "type": "number",
          "description": "Porcentage sobre utilidades del Fondo de Inversión Mezzanine"
        },
        "multiple_output": {
          "type": "number",
          "description": "Múltiplo de salida del Fondo de Inversión de Capital"
        },
        "flow": {
          "type": "string",
          "description": "Paso actual del flujo de la Solicitud de Crédito"
        },
        "street_address": {
          "type": "string",
          "description": "Calle"
        },
        "exterior_number_address": {
          "type": "string",
          "description": "Número exterior"
        },
        "interior_number_address": {
          "type": "string",
          "description": "Número interior"
        },
        "neighborhood_address": {
          "type": "string",
          "description": "Colonia"
        },
        "state_address": {
          "type": "string",
          "description": "Estado"
        },
        "city_address": {
          "type": "string",
          "description": "Ciudad"
        },
        "zipcode_address": {
          "type": "string",
          "description": "Código Postal"
        },
        "home_phone": {
          "type": "string",
          "description": "Teléfono de Casa"
        },
        "mobile_phone": {
          "type": "string",
          "description": "Mobile phone."
        },
        "classificaton": {
          "type": "string",
          "description": "Clasificación de la Solicitud de Crédito"
        },
        "description": {
          "type": "string",
          "description": "Descripción de la Solicitud de Crédito"
        },
        "metadata": {
          "type": "object",
          "properties": {},
          "description": "Atributos especiales de la Solicitud de Crédito"
        },
        "clabe": {
          "type": "string",
          "description": "CLABE"
        },
        "maximum_penalty_days": {
          "type": "number",
          "description": "Días máximos de penalizaciones"
        },
        "payment_days": {
          "type": [
            "number",
            "null"
          ],
          "description": "Días de pago de la Solicitud de Crédito"
        },
        "id": {
          "type": "string",
          "description": "ID único de la Solicitud de Crédito"
        },
        "application_number": {
          "type": "string",
          "description": "Número de la Solicitud de Crédito"
        },
        "rejected_at": {
          "type": "string",
          "description": "Fecha de Rechazo"
        },
        "rejected_notes": {
          "type": "string",
          "description": "Notas del Rechazo"
        },
        "approved_at": {
          "type": "string",
          "description": "Fecha de Aprobación"
        },
        "approved_amount_cents": {
          "type": "number",
          "description": "Cantidad Aprobada del Crédito Solicitado"
        },
        "accepted_at": {
          "type": "string",
          "description": "Fecha de Aceptación"
        },
        "first_payment_date": {
          "type": "string",
          "description": "Fecha de pago inicial"
        },
        "closing_date_at": {
          "type": "string",
          "description": "Fecha de corte de la Solicitud de Crédito"
        },
        "state": {
          "type": "string",
          "description": "Estado actual de la Solicitud de Crédito"
        },
        "i18n_state": {
          "type": "string",
          "description": "Traducción del estado actual de la Solicitud de crédito"
        },
        "maximum_amount_allowed_cents": {
          "type": "number",
          "description": "Cantidad restante en centavos que puede solicitar el Cliente. Cero si no hay restricción"
        },
        "maximum_credit_allowed": {
          "type": "number",
          "description": "Cantidad restante de créditos que puede solicitar el Cliente. Cero si no hay restricción"
        },
        "created_at": {
          "type": "string",
          "description": "Fecha de Creación de la Solicitud de Crédito"
        },
        "updated_at": {
          "type": "string",
          "description": "Última modificación a la Solicitud de Crédito"
        },
        "accessories": {
          "type": "array",
          "description": "Accesorios"
        },
        "product": {
          "type": "object",
          "properties": {
            "id": {
              "type": "string",
              "description": "ID único del Producto"
            }
          },
          "description": "Producto de la Solicitud de Crédito"
        },
        "contract": {
          "type": "object",
          "properties": {
            "id": {
              "type": "string",
              "description": "ID único del Contrato"
            },
            "title": {
              "type": "string",
              "description": "Título del Contrato"
            },
            "body": {
              "type": "string",
              "description": "Cuerpo del Contrato"
            }
          },
          "required": [
            "id",
            "title",
            "body"
          ],
          "additionalProperties": false,
          "description": "Contrato de la Solicitud de Crédito"
        },
        "customer": {
          "type": "object",
          "properties": {
            "id": {
              "type": "string",
              "description": "ID único del Cliente"
            }
          },
          "description": "Cliente de la Solicitud del Crédito"
        },
        "incomes": {
          "type": "array"
        },
        "expenses": {
          "type": "array"
        },
        "references": {
          "type": "array"
        },
        "attachments": {
          "type": "array"
        }
      },
      "required": [
        "amount_cents",
        "installments",
        "interest_rate",
        "late_payment_interest",
        "profits_percentage",
        "multiple_output",
        "flow",
        "street_address",
        "exterior_number_address",
        "interior_number_address",
        "neighborhood_address",
        "state_address",
        "city_address",
        "zipcode_address",
        "home_phone",
        "mobile_phone",
        "classificaton",
        "description",
        "metadata",
        "clabe",
        "maximum_penalty_days",
        "payment_days",
        "id",
        "application_number",
        "rejected_at",
        "rejected_notes",
        "approved_at",
        "approved_amount_cents",
        "accepted_at",
        "first_payment_date",
        "closing_date_at",
        "state",
        "i18n_state",
        "maximum_amount_allowed_cents",
        "maximum_credit_allowed",
        "created_at",
        "updated_at",
        "accessories",
        "product",
        "contract",
        "customer",
        "incomes",
        "expenses",
        "references",
        "attachments"
      ],
      "additionalProperties": false,
      "description": "Solicitudes de Crédito"
    },
    "links": {
      "type": "array",
      "items": [
        {
          "type": "object",
          "properties": {
            "rel": {
              "type": "string"
            }
          },
          "required": [
            "rel"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        }
      ],
      "description": "Links a referencias"
    }
  },
  "required": [
    "data",
    "links"
  ]
}
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Responses200
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "amount_cents": 500000,
      "installments": 12,
      "interest_rate": 20,
      "late_payment_interest": 5,
      "profits_percentage": 45,
      "multiple_output": 3,
      "flow": "inicio",
      "street_address": "Av. Carranza",
      "exterior_number_address": "1248",
      "interior_number_address": "1234",
      "neighborhood_address": "Colinas de Santa Bárbara",
      "state_address": "Colima",
      "city_address": "Villa de Álvarez",
      "zipcode_address": "28017",
      "home_phone": "3121225627",
      "mobile_phone": "3123452287",
      "classificaton": "Pagar deudas",
      "description": "Necesito consolidar deudas con un mejor interés",
      "metadata": {},
      "clabe": "002115016003269411",
      "maximum_penalty_days": 5,
      "payment_days": 20,
      "id": "636264b1-77a2-45ef-b643-e44cfbc84d40",
      "application_number": "UENDSND-1",
      "rejected_at": "2018-05-02",
      "rejected_notes": "No actualizó su documentación a tiempo.",
      "approved_at": "2018-05-02",
      "approved_amount_cents": 0,
      "accepted_at": "2018-05-01",
      "first_payment_date": "2018-05-01",
      "closing_date_at": "2020-02-12",
      "state": "ongoing",
      "i18n_state": "En trámite",
      "maximum_amount_allowed_cents": 0,
      "maximum_credit_allowed": 0,
      "created_at": "2021-09-04T16:28:20.586-05:00",
      "updated_at": "2021-09-04T16:28:20.586-05:00",
      "accessories": [
        {
          "name": "Comisión por apertura",
          "calculation_type": "percentage",
          "calculation_base": "credit#ending_balance",
          "calculate_iva": true,
          "settings": {},
          "days_offset": 0,
          "active": true,
          "fixed_value_cents": 170000,
          "percentage": 1.5,
          "payment_base": "credit#approved_amount"
        }
      ],
      "product": {
        "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c"
      },
      "contract": {
        "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
      },
      "customer": {
        "id": "db2c210f-64a8-46ea-8e83-849b3cba60d4"
      },
      "incomes": [
        {
          "classification": "Trabajo",
          "amount_cents": 450000,
          "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21",
          "created_at": "2018-07-02"
        }
      ],
      "expenses": [
        {
          "id": "eeedba2e-fc96-4f96-bd2e-bd046b256f96"
        }
      ],
      "references": [
        {
          "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
        }
      ],
      "attachments": [
        {
          "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e"
        }
      ]
    }
  ],
  "links": [
    {
      "rel": "self",
      "uri": "/applications/636264b1-77a2-45ef-b643-e44cfbc84d40"
    },
    {
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "rel": "product",
      "uri": "/products/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    },
    {
      "id": "4e9ece5f-d4e6-4fcd-bc9b-b437bef23ceb",
      "rel": "contract",
      "uri": "/contracts/4e9ece5f-d4e6-4fcd-bc9b-b437bef23ceb"
    },
    {
      "id": "90bec65b-5dcc-43c6-84d1-9ef98b8c9252",
      "rel": "customer",
      "uri": "/customers/90bec65b-5dcc-43c6-84d1-9ef98b8c9252"
    },
    {
      "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21",
      "rel": "income",
      "uri": "/incomes/3c8b46ce-a5f2-4f25-8280-a80551eacd21"
    },
    {
      "id": "eeedba2e-fc96-4f96-bd2e-bd046b256f96",
      "rel": "expense",
      "uri": "/expenses/eeedba2e-fc96-4f96-bd2e-bd046b256f96"
    },
    {
      "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a",
      "rel": "reference",
      "uri": "/references/0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
    },
    {
      "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e",
      "rel": "attachment",
      "uri": "/attachments/aabfd43d-6f63-44dd-b7d9-9352a101d11e"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "amount_cents": {
            "type": "number",
            "description": "Total del Crédito Solicitado"
          },
          "installments": {
            "type": "number",
            "description": "Número de Plazos de la Solicitud de Crédito"
          },
          "interest_rate": {
            "type": "number",
            "description": "Porcentage de interés de la Solicitud de Crédito"
          },
          "late_payment_interest": {
            "type": "number",
            "description": "Porcentage de interés moratorio de la Solicitud de Crédito"
          },
          "profits_percentage": {
            "type": "number",
            "description": "Porcentage sobre utilidades del Fondo de Inversión Mezzanine"
          },
          "multiple_output": {
            "type": "number",
            "description": "Múltiplo de salida del Fondo de Inversión de Capital"
          },
          "flow": {
            "type": "string",
            "description": "Paso actual del flujo de la Solicitud de Crédito"
          },
          "street_address": {
            "type": "string",
            "description": "Calle"
          },
          "exterior_number_address": {
            "type": "string",
            "description": "Número exterior"
          },
          "interior_number_address": {
            "type": "string",
            "description": "Número interior"
          },
          "neighborhood_address": {
            "type": "string",
            "description": "Colonia"
          },
          "state_address": {
            "type": "string",
            "description": "Estado"
          },
          "city_address": {
            "type": "string",
            "description": "Ciudad"
          },
          "zipcode_address": {
            "type": "string",
            "description": "Código Postal"
          },
          "home_phone": {
            "type": "string",
            "description": "Teléfono de Casa"
          },
          "mobile_phone": {
            "type": "string",
            "description": "Mobile phone."
          },
          "classificaton": {
            "type": "string",
            "description": "Clasificación de la Solicitud de Crédito"
          },
          "description": {
            "type": "string",
            "description": "Descripción de la Solicitud de Crédito"
          },
          "metadata": {
            "type": "object",
            "properties": {},
            "description": "Atributos especiales de la Solicitud de Crédito"
          },
          "clabe": {
            "type": "string",
            "description": "CLABE"
          },
          "maximum_penalty_days": {
            "type": "number",
            "description": "Días máximos de penalizaciones"
          },
          "payment_days": {
            "type": [
              "number",
              "null"
            ],
            "description": "Días de pago de la Solicitud de Crédito"
          },
          "id": {
            "type": "string",
            "description": "ID único de la Solicitud de Crédito"
          },
          "application_number": {
            "type": "string",
            "description": "Número de la Solicitud de Crédito"
          },
          "rejected_at": {
            "type": "string",
            "description": "Fecha de Rechazo"
          },
          "rejected_notes": {
            "type": "string",
            "description": "Notas del Rechazo"
          },
          "approved_at": {
            "type": "string",
            "description": "Fecha de Aprobación"
          },
          "approved_amount_cents": {
            "type": "number",
            "description": "Cantidad Aprobada del Crédito Solicitado"
          },
          "accepted_at": {
            "type": "string",
            "description": "Fecha de Aceptación"
          },
          "first_payment_date": {
            "type": "string",
            "description": "Fecha de pago inicial"
          },
          "closing_date_at": {
            "type": "string",
            "description": "Fecha de corte de la Solicitud de Crédito"
          },
          "state": {
            "type": "string",
            "description": "Estado actual de la Solicitud de Crédito"
          },
          "i18n_state": {
            "type": "string",
            "description": "Traducción del estado actual de la Solicitud de crédito"
          },
          "maximum_amount_allowed_cents": {
            "type": "number",
            "description": "Cantidad restante en centavos que puede solicitar el Cliente. Cero si no hay restricción"
          },
          "maximum_credit_allowed": {
            "type": "number",
            "description": "Cantidad restante de créditos que puede solicitar el Cliente. Cero si no hay restricción"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación de la Solicitud de Crédito"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación a la Solicitud de Crédito"
          },
          "accessories": {
            "type": "array",
            "description": "Accesorios"
          },
          "product": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Producto"
              }
            },
            "description": "Producto de la Solicitud de Crédito"
          },
          "contract": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Contrato"
              }
            },
            "description": "Contrato de la Solicitud de Crédito"
          },
          "customer": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Cliente"
              }
            },
            "description": "Cliente de la Solicitud del Crédito"
          },
          "incomes": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "classification": {
                  "type": "string",
                  "description": "Clasificación del Ingreso"
                },
                "amount_cents": {
                  "type": "number",
                  "description": "Cantidad Total en centavos del Ingreso"
                },
                "id": {
                  "type": "string",
                  "description": "ID único del Ingreso"
                },
                "created_at": {
                  "type": "string",
                  "description": "Fecha de Creación del Ingreso"
                }
              },
              "required": [
                "classification",
                "amount_cents",
                "id",
                "created_at"
              ]
            }
          },
          "expenses": {
            "type": "array"
          },
          "references": {
            "type": "array"
          },
          "attachments": {
            "type": "array"
          }
        },
        "required": [
          "id",
          "application_number",
          "incomes"
        ]
      },
      "description": "Solicitudes de Crédito"
    },
    "links": {
      "type": "array",
      "items": [
        {
          "type": "object",
          "properties": {
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        }
      ],
      "description": "Links a referencias"
    }
  },
  "required": [
    "data",
    "links"
  ]
}
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Responses200
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "amount_cents": 500000,
      "installments": 12,
      "interest_rate": 20,
      "late_payment_interest": 5,
      "profits_percentage": 45,
      "multiple_output": 3,
      "flow": "inicio",
      "street_address": "Av. Carranza",
      "exterior_number_address": "1248",
      "interior_number_address": "1234",
      "neighborhood_address": "Colinas de Santa Bárbara",
      "state_address": "Colima",
      "city_address": "Villa de Álvarez",
      "zipcode_address": "28017",
      "home_phone": "3121225627",
      "mobile_phone": "3123452287",
      "classificaton": "Pagar deudas",
      "description": "Necesito consolidar deudas con un mejor interés",
      "metadata": {},
      "clabe": "002115016003269411",
      "maximum_penalty_days": 5,
      "payment_days": 20,
      "id": "636264b1-77a2-45ef-b643-e44cfbc84d40",
      "application_number": "UENDSND-1",
      "rejected_at": "2018-05-02",
      "rejected_notes": "No actualizó su documentación a tiempo.",
      "approved_at": "2018-05-02",
      "approved_amount_cents": 0,
      "accepted_at": "2018-05-01",
      "first_payment_date": "2018-05-01",
      "closing_date_at": "2020-02-12",
      "state": "ongoing",
      "i18n_state": "En trámite",
      "maximum_amount_allowed_cents": 0,
      "maximum_credit_allowed": 0,
      "created_at": "2021-09-04T16:28:20.586-05:00",
      "updated_at": "2021-09-04T16:28:20.586-05:00",
      "accessories": [
        {
          "name": "Comisión por apertura",
          "calculation_type": "percentage",
          "calculation_base": "credit#ending_balance",
          "calculate_iva": true,
          "settings": {},
          "days_offset": 0,
          "active": true,
          "fixed_value_cents": 170000,
          "percentage": 1.5,
          "payment_base": "credit#approved_amount"
        }
      ],
      "product": {
        "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c"
      },
      "contract": {
        "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
      },
      "customer": {
        "id": "db2c210f-64a8-46ea-8e83-849b3cba60d4"
      },
      "incomes": [
        {
          "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21"
        }
      ],
      "expenses": [
        {
          "classification": "Renta",
          "amount_cents": 250000,
          "id": "eeedba2e-fc96-4f96-bd2e-bd046b256f96",
          "created_at": "2018-07-02"
        }
      ],
      "references": [
        {
          "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
        }
      ],
      "attachments": [
        {
          "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e"
        }
      ]
    }
  ],
  "links": [
    {
      "rel": "self",
      "uri": "/applications/636264b1-77a2-45ef-b643-e44cfbc84d40"
    },
    {
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "rel": "product",
      "uri": "/products/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    },
    {
      "id": "4e9ece5f-d4e6-4fcd-bc9b-b437bef23ceb",
      "rel": "contract",
      "uri": "/contracts/4e9ece5f-d4e6-4fcd-bc9b-b437bef23ceb"
    },
    {
      "id": "90bec65b-5dcc-43c6-84d1-9ef98b8c9252",
      "rel": "customer",
      "uri": "/customers/90bec65b-5dcc-43c6-84d1-9ef98b8c9252"
    },
    {
      "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21",
      "rel": "income",
      "uri": "/incomes/3c8b46ce-a5f2-4f25-8280-a80551eacd21"
    },
    {
      "id": "eeedba2e-fc96-4f96-bd2e-bd046b256f96",
      "rel": "expense",
      "uri": "/expenses/eeedba2e-fc96-4f96-bd2e-bd046b256f96"
    },
    {
      "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a",
      "rel": "reference",
      "uri": "/references/0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
    },
    {
      "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e",
      "rel": "attachment",
      "uri": "/attachments/aabfd43d-6f63-44dd-b7d9-9352a101d11e"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "amount_cents": {
            "type": "number",
            "description": "Total del Crédito Solicitado"
          },
          "installments": {
            "type": "number",
            "description": "Número de Plazos de la Solicitud de Crédito"
          },
          "interest_rate": {
            "type": "number",
            "description": "Porcentage de interés de la Solicitud de Crédito"
          },
          "late_payment_interest": {
            "type": "number",
            "description": "Porcentage de interés moratorio de la Solicitud de Crédito"
          },
          "profits_percentage": {
            "type": "number",
            "description": "Porcentage sobre utilidades del Fondo de Inversión Mezzanine"
          },
          "multiple_output": {
            "type": "number",
            "description": "Múltiplo de salida del Fondo de Inversión de Capital"
          },
          "flow": {
            "type": "string",
            "description": "Paso actual del flujo de la Solicitud de Crédito"
          },
          "street_address": {
            "type": "string",
            "description": "Calle"
          },
          "exterior_number_address": {
            "type": "string",
            "description": "Número exterior"
          },
          "interior_number_address": {
            "type": "string",
            "description": "Número interior"
          },
          "neighborhood_address": {
            "type": "string",
            "description": "Colonia"
          },
          "state_address": {
            "type": "string",
            "description": "Estado"
          },
          "city_address": {
            "type": "string",
            "description": "Ciudad"
          },
          "zipcode_address": {
            "type": "string",
            "description": "Código Postal"
          },
          "home_phone": {
            "type": "string",
            "description": "Teléfono de Casa"
          },
          "mobile_phone": {
            "type": "string",
            "description": "Mobile phone."
          },
          "classificaton": {
            "type": "string",
            "description": "Clasificación de la Solicitud de Crédito"
          },
          "description": {
            "type": "string",
            "description": "Descripción de la Solicitud de Crédito"
          },
          "metadata": {
            "type": "object",
            "properties": {},
            "description": "Atributos especiales de la Solicitud de Crédito"
          },
          "clabe": {
            "type": "string",
            "description": "CLABE"
          },
          "maximum_penalty_days": {
            "type": "number",
            "description": "Días máximos de penalizaciones"
          },
          "payment_days": {
            "type": [
              "number",
              "null"
            ],
            "description": "Días de pago de la Solicitud de Crédito"
          },
          "id": {
            "type": "string",
            "description": "ID único de la Solicitud de Crédito"
          },
          "application_number": {
            "type": "string",
            "description": "Número de la Solicitud de Crédito"
          },
          "rejected_at": {
            "type": "string",
            "description": "Fecha de Rechazo"
          },
          "rejected_notes": {
            "type": "string",
            "description": "Notas del Rechazo"
          },
          "approved_at": {
            "type": "string",
            "description": "Fecha de Aprobación"
          },
          "approved_amount_cents": {
            "type": "number",
            "description": "Cantidad Aprobada del Crédito Solicitado"
          },
          "accepted_at": {
            "type": "string",
            "description": "Fecha de Aceptación"
          },
          "first_payment_date": {
            "type": "string",
            "description": "Fecha de pago inicial"
          },
          "closing_date_at": {
            "type": "string",
            "description": "Fecha de corte de la Solicitud de Crédito"
          },
          "state": {
            "type": "string",
            "description": "Estado actual de la Solicitud de Crédito"
          },
          "i18n_state": {
            "type": "string",
            "description": "Traducción del estado actual de la Solicitud de crédito"
          },
          "maximum_amount_allowed_cents": {
            "type": "number",
            "description": "Cantidad restante en centavos que puede solicitar el Cliente. Cero si no hay restricción"
          },
          "maximum_credit_allowed": {
            "type": "number",
            "description": "Cantidad restante de créditos que puede solicitar el Cliente. Cero si no hay restricción"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación de la Solicitud de Crédito"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación a la Solicitud de Crédito"
          },
          "accessories": {
            "type": "array",
            "description": "Accesorios"
          },
          "product": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Producto"
              }
            },
            "description": "Producto de la Solicitud de Crédito"
          },
          "contract": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Contrato"
              }
            },
            "description": "Contrato de la Solicitud de Crédito"
          },
          "customer": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Cliente"
              }
            },
            "description": "Cliente de la Solicitud del Crédito"
          },
          "incomes": {
            "type": "array"
          },
          "expenses": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "classification": {
                  "type": "string",
                  "description": "Clasificación del Egreso"
                },
                "amount_cents": {
                  "type": "number",
                  "description": "Cantidad Total en centavos del Egreso"
                },
                "id": {
                  "type": "string",
                  "description": "ID único del Egreso"
                },
                "created_at": {
                  "type": "string",
                  "description": "Fecha de Creación del Egreso"
                }
              },
              "required": [
                "classification",
                "amount_cents",
                "id",
                "created_at"
              ]
            }
          },
          "references": {
            "type": "array"
          },
          "attachments": {
            "type": "array"
          }
        },
        "required": [
          "id",
          "application_number",
          "expenses"
        ]
      },
      "description": "Solicitudes de Crédito"
    },
    "links": {
      "type": "array",
      "items": [
        {
          "type": "object",
          "properties": {
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        }
      ],
      "description": "Links a referencias"
    }
  },
  "required": [
    "data",
    "links"
  ]
}
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Responses200
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "amount_cents": 500000,
      "installments": 12,
      "interest_rate": 20,
      "late_payment_interest": 5,
      "profits_percentage": 45,
      "multiple_output": 3,
      "flow": "inicio",
      "street_address": "Av. Carranza",
      "exterior_number_address": "1248",
      "interior_number_address": "1234",
      "neighborhood_address": "Colinas de Santa Bárbara",
      "state_address": "Colima",
      "city_address": "Villa de Álvarez",
      "zipcode_address": "28017",
      "home_phone": "3121225627",
      "mobile_phone": "3123452287",
      "classificaton": "Pagar deudas",
      "description": "Necesito consolidar deudas con un mejor interés",
      "metadata": {},
      "clabe": "002115016003269411",
      "maximum_penalty_days": 5,
      "payment_days": 20,
      "id": "636264b1-77a2-45ef-b643-e44cfbc84d40",
      "application_number": "UENDSND-1",
      "rejected_at": "2018-05-02",
      "rejected_notes": "No actualizó su documentación a tiempo.",
      "approved_at": "2018-05-02",
      "approved_amount_cents": 0,
      "accepted_at": "2018-05-01",
      "first_payment_date": "2018-05-01",
      "closing_date_at": "2020-02-12",
      "state": "ongoing",
      "i18n_state": "En trámite",
      "maximum_amount_allowed_cents": 0,
      "maximum_credit_allowed": 0,
      "created_at": "2021-09-04T16:28:20.586-05:00",
      "updated_at": "2021-09-04T16:28:20.586-05:00",
      "accessories": [
        {
          "name": "Comisión por apertura",
          "calculation_type": "percentage",
          "calculation_base": "credit#ending_balance",
          "calculate_iva": true,
          "settings": {},
          "days_offset": 0,
          "active": true,
          "fixed_value_cents": 170000,
          "percentage": 1.5,
          "payment_base": "credit#approved_amount"
        }
      ],
      "product": {
        "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c"
      },
      "contract": {
        "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
      },
      "customer": {
        "id": "db2c210f-64a8-46ea-8e83-849b3cba60d4"
      },
      "incomes": [
        {
          "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21"
        }
      ],
      "expenses": [
        {
          "id": "eeedba2e-fc96-4f96-bd2e-bd046b256f96"
        }
      ],
      "references": [
        {
          "classification": "Renta",
          "name": "Rigoberto Villegas",
          "phone": "3121159945",
          "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a",
          "created_at": "2018-07-02"
        }
      ],
      "attachments": [
        {
          "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e"
        }
      ]
    }
  ],
  "links": [
    {
      "rel": "self",
      "uri": "/applications/636264b1-77a2-45ef-b643-e44cfbc84d40"
    },
    {
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "rel": "product",
      "uri": "/products/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    },
    {
      "id": "4e9ece5f-d4e6-4fcd-bc9b-b437bef23ceb",
      "rel": "contract",
      "uri": "/contracts/4e9ece5f-d4e6-4fcd-bc9b-b437bef23ceb"
    },
    {
      "id": "90bec65b-5dcc-43c6-84d1-9ef98b8c9252",
      "rel": "customer",
      "uri": "/customers/90bec65b-5dcc-43c6-84d1-9ef98b8c9252"
    },
    {
      "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21",
      "rel": "income",
      "uri": "/incomes/3c8b46ce-a5f2-4f25-8280-a80551eacd21"
    },
    {
      "id": "eeedba2e-fc96-4f96-bd2e-bd046b256f96",
      "rel": "expense",
      "uri": "/expenses/eeedba2e-fc96-4f96-bd2e-bd046b256f96"
    },
    {
      "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a",
      "rel": "reference",
      "uri": "/references/0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
    },
    {
      "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e",
      "rel": "attachment",
      "uri": "/attachments/aabfd43d-6f63-44dd-b7d9-9352a101d11e"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "amount_cents": {
            "type": "number",
            "description": "Total del Crédito Solicitado"
          },
          "installments": {
            "type": "number",
            "description": "Número de Plazos de la Solicitud de Crédito"
          },
          "interest_rate": {
            "type": "number",
            "description": "Porcentage de interés de la Solicitud de Crédito"
          },
          "late_payment_interest": {
            "type": "number",
            "description": "Porcentage de interés moratorio de la Solicitud de Crédito"
          },
          "profits_percentage": {
            "type": "number",
            "description": "Porcentage sobre utilidades del Fondo de Inversión Mezzanine"
          },
          "multiple_output": {
            "type": "number",
            "description": "Múltiplo de salida del Fondo de Inversión de Capital"
          },
          "flow": {
            "type": "string",
            "description": "Paso actual del flujo de la Solicitud de Crédito"
          },
          "street_address": {
            "type": "string",
            "description": "Calle"
          },
          "exterior_number_address": {
            "type": "string",
            "description": "Número exterior"
          },
          "interior_number_address": {
            "type": "string",
            "description": "Número interior"
          },
          "neighborhood_address": {
            "type": "string",
            "description": "Colonia"
          },
          "state_address": {
            "type": "string",
            "description": "Estado"
          },
          "city_address": {
            "type": "string",
            "description": "Ciudad"
          },
          "zipcode_address": {
            "type": "string",
            "description": "Código Postal"
          },
          "home_phone": {
            "type": "string",
            "description": "Teléfono de Casa"
          },
          "mobile_phone": {
            "type": "string",
            "description": "Mobile phone."
          },
          "classificaton": {
            "type": "string",
            "description": "Clasificación de la Solicitud de Crédito"
          },
          "description": {
            "type": "string",
            "description": "Descripción de la Solicitud de Crédito"
          },
          "metadata": {
            "type": "object",
            "properties": {},
            "description": "Atributos especiales de la Solicitud de Crédito"
          },
          "clabe": {
            "type": "string",
            "description": "CLABE"
          },
          "maximum_penalty_days": {
            "type": "number",
            "description": "Días máximos de penalizaciones"
          },
          "payment_days": {
            "type": [
              "number",
              "null"
            ],
            "description": "Días de pago de la Solicitud de Crédito"
          },
          "id": {
            "type": "string",
            "description": "ID único de la Solicitud de Crédito"
          },
          "application_number": {
            "type": "string",
            "description": "Número de la Solicitud de Crédito"
          },
          "rejected_at": {
            "type": "string",
            "description": "Fecha de Rechazo"
          },
          "rejected_notes": {
            "type": "string",
            "description": "Notas del Rechazo"
          },
          "approved_at": {
            "type": "string",
            "description": "Fecha de Aprobación"
          },
          "approved_amount_cents": {
            "type": "number",
            "description": "Cantidad Aprobada del Crédito Solicitado"
          },
          "accepted_at": {
            "type": "string",
            "description": "Fecha de Aceptación"
          },
          "first_payment_date": {
            "type": "string",
            "description": "Fecha de pago inicial"
          },
          "closing_date_at": {
            "type": "string",
            "description": "Fecha de corte de la Solicitud de Crédito"
          },
          "state": {
            "type": "string",
            "description": "Estado actual de la Solicitud de Crédito"
          },
          "i18n_state": {
            "type": "string",
            "description": "Traducción del estado actual de la Solicitud de crédito"
          },
          "maximum_amount_allowed_cents": {
            "type": "number",
            "description": "Cantidad restante en centavos que puede solicitar el Cliente. Cero si no hay restricción"
          },
          "maximum_credit_allowed": {
            "type": "number",
            "description": "Cantidad restante de créditos que puede solicitar el Cliente. Cero si no hay restricción"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación de la Solicitud de Crédito"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación a la Solicitud de Crédito"
          },
          "accessories": {
            "type": "array",
            "description": "Accesorios"
          },
          "product": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Producto"
              }
            },
            "description": "Producto de la Solicitud de Crédito"
          },
          "contract": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Contrato"
              }
            },
            "description": "Contrato de la Solicitud de Crédito"
          },
          "customer": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Cliente"
              }
            },
            "description": "Cliente de la Solicitud del Crédito"
          },
          "incomes": {
            "type": "array"
          },
          "expenses": {
            "type": "array"
          },
          "references": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "classification": {
                  "type": "string",
                  "description": "Clasificación de la Referencia"
                },
                "name": {
                  "type": "string",
                  "description": "Nombre de la Referencia"
                },
                "phone": {
                  "type": "string",
                  "description": "Teléfono de la Referencia"
                },
                "id": {
                  "type": "string",
                  "description": "ID único de la Referencia"
                },
                "created_at": {
                  "type": "string",
                  "description": "Fecha de Creación del Egreso"
                }
              },
              "required": [
                "classification",
                "name",
                "phone",
                "id",
                "created_at"
              ]
            }
          },
          "attachments": {
            "type": "array"
          }
        },
        "required": [
          "id",
          "application_number",
          "references"
        ]
      },
      "description": "Solicitudes de Crédito"
    },
    "links": {
      "type": "array",
      "items": [
        {
          "type": "object",
          "properties": {
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        }
      ],
      "description": "Links a referencias"
    }
  },
  "required": [
    "data",
    "links"
  ]
}
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Responses200
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "amount_cents": 500000,
      "installments": 12,
      "interest_rate": 20,
      "late_payment_interest": 5,
      "profits_percentage": 45,
      "multiple_output": 3,
      "flow": "inicio",
      "street_address": "Av. Carranza",
      "exterior_number_address": "1248",
      "interior_number_address": "1234",
      "neighborhood_address": "Colinas de Santa Bárbara",
      "state_address": "Colima",
      "city_address": "Villa de Álvarez",
      "zipcode_address": "28017",
      "home_phone": "3121225627",
      "mobile_phone": "3123452287",
      "classificaton": "Pagar deudas",
      "description": "Necesito consolidar deudas con un mejor interés",
      "metadata": {},
      "clabe": "002115016003269411",
      "maximum_penalty_days": 5,
      "payment_days": 20,
      "id": "636264b1-77a2-45ef-b643-e44cfbc84d40",
      "application_number": "UENDSND-1",
      "rejected_at": "2018-05-02",
      "rejected_notes": "No actualizó su documentación a tiempo.",
      "approved_at": "2018-05-02",
      "approved_amount_cents": 0,
      "accepted_at": "2018-05-01",
      "first_payment_date": "2018-05-01",
      "closing_date_at": "2020-02-12",
      "state": "ongoing",
      "i18n_state": "En trámite",
      "maximum_amount_allowed_cents": 0,
      "maximum_credit_allowed": 0,
      "created_at": "2021-09-04T16:28:20.586-05:00",
      "updated_at": "2021-09-04T16:28:20.586-05:00",
      "accessories": [
        {
          "name": "Comisión por apertura",
          "calculation_type": "percentage",
          "calculation_base": "credit#ending_balance",
          "calculate_iva": true,
          "settings": {},
          "days_offset": 0,
          "active": true,
          "fixed_value_cents": 170000,
          "percentage": 1.5,
          "payment_base": "credit#approved_amount"
        }
      ],
      "product": {
        "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c"
      },
      "contract": {
        "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
      },
      "customer": {
        "id": "db2c210f-64a8-46ea-8e83-849b3cba60d4"
      },
      "incomes": [
        {
          "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21"
        }
      ],
      "expenses": [
        {
          "id": "eeedba2e-fc96-4f96-bd2e-bd046b256f96"
        }
      ],
      "references": [
        {
          "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
        }
      ],
      "attachments": [
        {
          "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21",
          "attachmentable_type": "customer",
          "attachmentable_id": "73676276-221c-40ac-af43-ab2f3f72a48c",
          "attachment_type": "INE",
          "file": "staging.creditar.io/rails/active_storage/blobs/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBFQT09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--19f8c22c36866305fa3878fe3a04e19a0fc6f4d1/WhatsApp%20Image%202018-03-06%20at%208.24.22%20PM.pdf\"",
          "created_at": "2020-04-17T12:55:47.220-05:0"
        }
      ]
    }
  ],
  "links": [
    {
      "rel": "self",
      "uri": "/applications/636264b1-77a2-45ef-b643-e44cfbc84d40"
    },
    {
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "rel": "product",
      "uri": "/products/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    },
    {
      "id": "4e9ece5f-d4e6-4fcd-bc9b-b437bef23ceb",
      "rel": "contract",
      "uri": "/contracts/4e9ece5f-d4e6-4fcd-bc9b-b437bef23ceb"
    },
    {
      "id": "90bec65b-5dcc-43c6-84d1-9ef98b8c9252",
      "rel": "customer",
      "uri": "/customers/90bec65b-5dcc-43c6-84d1-9ef98b8c9252"
    },
    {
      "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21",
      "rel": "income",
      "uri": "/incomes/3c8b46ce-a5f2-4f25-8280-a80551eacd21"
    },
    {
      "id": "eeedba2e-fc96-4f96-bd2e-bd046b256f96",
      "rel": "expense",
      "uri": "/expenses/eeedba2e-fc96-4f96-bd2e-bd046b256f96"
    },
    {
      "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a",
      "rel": "reference",
      "uri": "/references/0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
    },
    {
      "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e",
      "rel": "attachment",
      "uri": "/attachments/aabfd43d-6f63-44dd-b7d9-9352a101d11e"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "amount_cents": {
            "type": "number",
            "description": "Total del Crédito Solicitado"
          },
          "installments": {
            "type": "number",
            "description": "Número de Plazos de la Solicitud de Crédito"
          },
          "interest_rate": {
            "type": "number",
            "description": "Porcentage de interés de la Solicitud de Crédito"
          },
          "late_payment_interest": {
            "type": "number",
            "description": "Porcentage de interés moratorio de la Solicitud de Crédito"
          },
          "profits_percentage": {
            "type": "number",
            "description": "Porcentage sobre utilidades del Fondo de Inversión Mezzanine"
          },
          "multiple_output": {
            "type": "number",
            "description": "Múltiplo de salida del Fondo de Inversión de Capital"
          },
          "flow": {
            "type": "string",
            "description": "Paso actual del flujo de la Solicitud de Crédito"
          },
          "street_address": {
            "type": "string",
            "description": "Calle"
          },
          "exterior_number_address": {
            "type": "string",
            "description": "Número exterior"
          },
          "interior_number_address": {
            "type": "string",
            "description": "Número interior"
          },
          "neighborhood_address": {
            "type": "string",
            "description": "Colonia"
          },
          "state_address": {
            "type": "string",
            "description": "Estado"
          },
          "city_address": {
            "type": "string",
            "description": "Ciudad"
          },
          "zipcode_address": {
            "type": "string",
            "description": "Código Postal"
          },
          "home_phone": {
            "type": "string",
            "description": "Teléfono de Casa"
          },
          "mobile_phone": {
            "type": "string",
            "description": "Mobile phone."
          },
          "classificaton": {
            "type": "string",
            "description": "Clasificación de la Solicitud de Crédito"
          },
          "description": {
            "type": "string",
            "description": "Descripción de la Solicitud de Crédito"
          },
          "metadata": {
            "type": "object",
            "properties": {},
            "description": "Atributos especiales de la Solicitud de Crédito"
          },
          "clabe": {
            "type": "string",
            "description": "CLABE"
          },
          "maximum_penalty_days": {
            "type": "number",
            "description": "Días máximos de penalizaciones"
          },
          "payment_days": {
            "type": [
              "number",
              "null"
            ],
            "description": "Días de pago de la Solicitud de Crédito"
          },
          "id": {
            "type": "string",
            "description": "ID único de la Solicitud de Crédito"
          },
          "application_number": {
            "type": "string",
            "description": "Número de la Solicitud de Crédito"
          },
          "rejected_at": {
            "type": "string",
            "description": "Fecha de Rechazo"
          },
          "rejected_notes": {
            "type": "string",
            "description": "Notas del Rechazo"
          },
          "approved_at": {
            "type": "string",
            "description": "Fecha de Aprobación"
          },
          "approved_amount_cents": {
            "type": "number",
            "description": "Cantidad Aprobada del Crédito Solicitado"
          },
          "accepted_at": {
            "type": "string",
            "description": "Fecha de Aceptación"
          },
          "first_payment_date": {
            "type": "string",
            "description": "Fecha de pago inicial"
          },
          "closing_date_at": {
            "type": "string",
            "description": "Fecha de corte de la Solicitud de Crédito"
          },
          "state": {
            "type": "string",
            "description": "Estado actual de la Solicitud de Crédito"
          },
          "i18n_state": {
            "type": "string",
            "description": "Traducción del estado actual de la Solicitud de crédito"
          },
          "maximum_amount_allowed_cents": {
            "type": "number",
            "description": "Cantidad restante en centavos que puede solicitar el Cliente. Cero si no hay restricción"
          },
          "maximum_credit_allowed": {
            "type": "number",
            "description": "Cantidad restante de créditos que puede solicitar el Cliente. Cero si no hay restricción"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación de la Solicitud de Crédito"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación a la Solicitud de Crédito"
          },
          "accessories": {
            "type": "array",
            "description": "Accesorios"
          },
          "product": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Producto"
              }
            },
            "description": "Producto de la Solicitud de Crédito"
          },
          "contract": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Contrato"
              }
            },
            "description": "Contrato de la Solicitud de Crédito"
          },
          "customer": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Cliente"
              }
            },
            "description": "Cliente de la Solicitud del Crédito"
          },
          "incomes": {
            "type": "array"
          },
          "expenses": {
            "type": "array"
          },
          "references": {
            "type": "array"
          },
          "attachments": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "ID único del Archivo"
                },
                "attachmentable_type": {
                  "type": "string",
                  "description": "Representa el recurso"
                },
                "attachmentable_id": {
                  "type": "string",
                  "description": "Representa el ID del recurso"
                },
                "attachment_type": {
                  "type": "string",
                  "description": "Tipo de documento del Archivo"
                },
                "file": {
                  "type": "string",
                  "description": "URL del Archivo"
                },
                "created_at": {
                  "type": "string",
                  "description": "Fecha de Creación del Archivo"
                }
              },
              "required": [
                "id",
                "attachmentable_type",
                "attachmentable_id",
                "attachment_type",
                "file",
                "created_at"
              ]
            }
          }
        },
        "required": [
          "id",
          "application_number",
          "attachments"
        ]
      },
      "description": "Solicitudes de Crédito"
    },
    "links": {
      "type": "array",
      "items": [
        {
          "type": "object",
          "properties": {
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        }
      ],
      "description": "Links a referencias"
    }
  },
  "required": [
    "data",
    "links"
  ]
}
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Responses200
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "amount_cents": 500000,
      "installments": 12,
      "interest_rate": 20,
      "late_payment_interest": 5,
      "profits_percentage": 45,
      "multiple_output": 3,
      "flow": "inicio",
      "street_address": "Av. Carranza",
      "exterior_number_address": "1248",
      "interior_number_address": "1234",
      "neighborhood_address": "Colinas de Santa Bárbara",
      "state_address": "Colima",
      "city_address": "Villa de Álvarez",
      "zipcode_address": "28017",
      "home_phone": "3121225627",
      "mobile_phone": "3123452287",
      "classificaton": "Pagar deudas",
      "description": "Necesito consolidar deudas con un mejor interés",
      "metadata": {},
      "clabe": "002115016003269411",
      "maximum_penalty_days": 5,
      "payment_days": 20,
      "id": "636264b1-77a2-45ef-b643-e44cfbc84d40",
      "application_number": "UENDSND-1",
      "rejected_at": "2018-05-02",
      "rejected_notes": "No actualizó su documentación a tiempo.",
      "approved_at": "2018-05-02",
      "approved_amount_cents": 0,
      "accepted_at": "2018-05-01",
      "first_payment_date": "2018-05-01",
      "closing_date_at": "2020-02-12",
      "state": "ongoing",
      "i18n_state": "En trámite",
      "maximum_amount_allowed_cents": 0,
      "maximum_credit_allowed": 0,
      "created_at": "2021-09-04T16:28:20.586-05:00",
      "updated_at": "2021-09-04T16:28:20.586-05:00",
      "accessories": [
        {
          "name": "Comisión por apertura",
          "calculation_type": "percentage",
          "calculation_base": "credit#ending_balance",
          "calculate_iva": true,
          "settings": {},
          "days_offset": 0,
          "active": true,
          "fixed_value_cents": 170000,
          "percentage": 1.5,
          "payment_base": "credit#approved_amount"
        }
      ],
      "customer": {
        "email": "customer@mail.com",
        "first_name": "Juán",
        "second_name": "Carlos",
        "last_name": "Pérez",
        "mother_name": "García",
        "date_of_birth": "1980-03-24",
        "rfc": "PEGJ800324TR4",
        "curp": "PEGJ800324UT3UDHETL-7",
        "blocked": false,
        "metadata": {},
        "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
        "created_at": "2018-05-02",
        "updated_at": "2018-05-02",
        "credit_applications": [
          {
            "id": "636264b1-77a2-45ef-b643-e44cfbc84d40"
          }
        ],
        "credits": [
          {
            "id": "b79a8dff-de7e-4b64-9618-5c7d74bcc233"
          }
        ],
        "attachments": [
          {
            "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e"
          }
        ]
      },
      "product": {
        "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
        "short_name": "un-pago",
        "name": "Crédito a un sólo pago",
        "interest_rate": 20,
        "interest_rate_days": 360,
        "tax": 16,
        "description": "Crédito a sólo pago...",
        "crowdfunding": true,
        "payment_periodicity_label": "Mensual",
        "payment_periodicity_value": 30,
        "default_amount_cents": 500000,
        "minimum_amount_cents": 200000,
        "maximum_amount_cents": 700000,
        "installments_number": 1,
        "installments_minimum": 1,
        "installments_maximum": 3,
        "late_payment_interest": 10,
        "payment_days": 20,
        "created_at": "2018-05-02",
        "updated_at": "2018-05-02"
      },
      "contract": {
        "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a",
        "title": "Título del contrato",
        "body": "Contrato del Crédito..."
      },
      "incomes": [
        {
          "classification": "Trabajo",
          "amount_cents": 450000,
          "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21",
          "created_at": "2018-07-02"
        }
      ],
      "expenses": [
        {
          "classification": "Renta",
          "amount_cents": 250000,
          "id": "eeedba2e-fc96-4f96-bd2e-bd046b256f96",
          "created_at": "2018-07-02"
        }
      ],
      "references": [
        {
          "classification": "Renta",
          "name": "Rigoberto Villegas",
          "phone": "3121159945",
          "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a",
          "created_at": "2018-07-02"
        }
      ],
      "attachments": [
        {
          "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21",
          "attachmentable_type": "customer",
          "attachmentable_id": "73676276-221c-40ac-af43-ab2f3f72a48c",
          "attachment_type": "INE",
          "file": "staging.creditar.io/rails/active_storage/blobs/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBFQT09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--19f8c22c36866305fa3878fe3a04e19a0fc6f4d1/WhatsApp%20Image%202018-03-06%20at%208.24.22%20PM.pdf\"",
          "created_at": "2020-04-17T12:55:47.220-05:0"
        }
      ]
    }
  ],
  "links": [
    {
      "rel": "self",
      "uri": "/applications/636264b1-77a2-45ef-b643-e44cfbc84d40"
    },
    {
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "rel": "product",
      "uri": "/products/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    },
    {
      "id": "4e9ece5f-d4e6-4fcd-bc9b-b437bef23ceb",
      "rel": "contract",
      "uri": "/contracts/4e9ece5f-d4e6-4fcd-bc9b-b437bef23ceb"
    },
    {
      "id": "90bec65b-5dcc-43c6-84d1-9ef98b8c9252",
      "rel": "customer",
      "uri": "/customers/90bec65b-5dcc-43c6-84d1-9ef98b8c9252"
    },
    {
      "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21",
      "rel": "income",
      "uri": "/incomes/3c8b46ce-a5f2-4f25-8280-a80551eacd21"
    },
    {
      "id": "eeedba2e-fc96-4f96-bd2e-bd046b256f96",
      "rel": "expense",
      "uri": "/expenses/eeedba2e-fc96-4f96-bd2e-bd046b256f96"
    },
    {
      "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a",
      "rel": "reference",
      "uri": "/references/0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
    },
    {
      "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e",
      "rel": "attachment",
      "uri": "/attachments/aabfd43d-6f63-44dd-b7d9-9352a101d11e"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "amount_cents": {
            "type": "number",
            "description": "Total del Crédito Solicitado"
          },
          "installments": {
            "type": "number",
            "description": "Número de Plazos de la Solicitud de Crédito"
          },
          "interest_rate": {
            "type": "number",
            "description": "Porcentage de interés de la Solicitud de Crédito"
          },
          "late_payment_interest": {
            "type": "number",
            "description": "Porcentage de interés moratorio de la Solicitud de Crédito"
          },
          "profits_percentage": {
            "type": "number",
            "description": "Porcentage sobre utilidades del Fondo de Inversión Mezzanine"
          },
          "multiple_output": {
            "type": "number",
            "description": "Múltiplo de salida del Fondo de Inversión de Capital"
          },
          "flow": {
            "type": "string",
            "description": "Paso actual del flujo de la Solicitud de Crédito"
          },
          "street_address": {
            "type": "string",
            "description": "Calle"
          },
          "exterior_number_address": {
            "type": "string",
            "description": "Número exterior"
          },
          "interior_number_address": {
            "type": "string",
            "description": "Número interior"
          },
          "neighborhood_address": {
            "type": "string",
            "description": "Colonia"
          },
          "state_address": {
            "type": "string",
            "description": "Estado"
          },
          "city_address": {
            "type": "string",
            "description": "Ciudad"
          },
          "zipcode_address": {
            "type": "string",
            "description": "Código Postal"
          },
          "home_phone": {
            "type": "string",
            "description": "Teléfono de Casa"
          },
          "mobile_phone": {
            "type": "string",
            "description": "Mobile phone."
          },
          "classificaton": {
            "type": "string",
            "description": "Clasificación de la Solicitud de Crédito"
          },
          "description": {
            "type": "string",
            "description": "Descripción de la Solicitud de Crédito"
          },
          "metadata": {
            "type": "object",
            "properties": {},
            "description": "Atributos especiales de la Solicitud de Crédito"
          },
          "clabe": {
            "type": "string",
            "description": "CLABE"
          },
          "maximum_penalty_days": {
            "type": "number",
            "description": "Días máximos de penalizaciones"
          },
          "payment_days": {
            "type": [
              "number",
              "null"
            ],
            "description": "Días de pago de la Solicitud de Crédito"
          },
          "id": {
            "type": "string",
            "description": "ID único de la Solicitud de Crédito"
          },
          "application_number": {
            "type": "string",
            "description": "Número de la Solicitud de Crédito"
          },
          "rejected_at": {
            "type": "string",
            "description": "Fecha de Rechazo"
          },
          "rejected_notes": {
            "type": "string",
            "description": "Notas del Rechazo"
          },
          "approved_at": {
            "type": "string",
            "description": "Fecha de Aprobación"
          },
          "approved_amount_cents": {
            "type": "number",
            "description": "Cantidad Aprobada del Crédito Solicitado"
          },
          "accepted_at": {
            "type": "string",
            "description": "Fecha de Aceptación"
          },
          "first_payment_date": {
            "type": "string",
            "description": "Fecha de pago inicial"
          },
          "closing_date_at": {
            "type": "string",
            "description": "Fecha de corte de la Solicitud de Crédito"
          },
          "state": {
            "type": "string",
            "description": "Estado actual de la Solicitud de Crédito"
          },
          "i18n_state": {
            "type": "string",
            "description": "Traducción del estado actual de la Solicitud de crédito"
          },
          "maximum_amount_allowed_cents": {
            "type": "number",
            "description": "Cantidad restante en centavos que puede solicitar el Cliente. Cero si no hay restricción"
          },
          "maximum_credit_allowed": {
            "type": "number",
            "description": "Cantidad restante de créditos que puede solicitar el Cliente. Cero si no hay restricción"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación de la Solicitud de Crédito"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación a la Solicitud de Crédito"
          },
          "accessories": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "name": {
                  "type": "string",
                  "description": "Nombre"
                },
                "calculation_type": {
                  "type": "string",
                  "description": "Tipo de cálculo"
                },
                "calculation_base": {
                  "type": "string",
                  "description": "Base de cálculo"
                },
                "calculate_iva": {
                  "type": "boolean",
                  "description": "Calcular IVA"
                },
                "settings": {
                  "type": "object",
                  "properties": {},
                  "description": "Configuraciones"
                },
                "days_offset": {
                  "type": "number",
                  "description": "Días de gracia"
                },
                "active": {
                  "type": "boolean",
                  "description": "Activo"
                },
                "fixed_value_cents": {
                  "type": "number",
                  "description": "Valor fijo en centavos"
                },
                "percentage": {
                  "type": "number",
                  "description": "Porcentaje"
                },
                "payment_base": {
                  "type": "string",
                  "description": "Base de cobro"
                }
              }
            }
          },
          "customer": {
            "type": "object",
            "properties": {
              "email": {
                "type": "string",
                "description": "Email del Cliente"
              },
              "first_name": {
                "type": "string",
                "description": "Primer Nombre del Cliente"
              },
              "second_name": {
                "type": "string",
                "description": "Segundo Nombre del Cliente"
              },
              "last_name": {
                "type": "string",
                "description": "Apellido Paterno del Cliente"
              },
              "mother_name": {
                "type": "string",
                "description": "Apellido Materno del Cliente"
              },
              "date_of_birth": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Fecha de Nacimiento del Cliente con formato `yyyy-mm-dd`"
              },
              "rfc": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "RFC del Cliente"
              },
              "curp": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "CURP del Cliente"
              },
              "blocked": {
                "type": "boolean",
                "description": "Estado del Bloqueo del Cliente"
              },
              "metadata": {
                "type": "object",
                "properties": {},
                "description": "Atributos especiales del Cliente"
              },
              "id": {
                "type": "string",
                "description": "ID único del Cliente"
              },
              "created_at": {
                "type": "string",
                "description": "Fecha de Creación del Cliente"
              },
              "updated_at": {
                "type": "string",
                "description": "Última modificación al Cliente"
              },
              "credit_applications": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "ID único de la Solicitud de Crédito"
                    }
                  }
                },
                "description": "Solicitudes de Crédito"
              },
              "credits": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "ID único del Crédito"
                    }
                  }
                },
                "description": "Créditos"
              },
              "attachments": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "ID único del Archivo"
                    }
                  }
                },
                "description": "Archivos"
              }
            },
            "required": [
              "email",
              "first_name",
              "second_name",
              "last_name",
              "mother_name",
              "date_of_birth",
              "rfc",
              "curp",
              "blocked",
              "metadata",
              "id",
              "created_at",
              "updated_at",
              "credit_applications",
              "credits",
              "attachments"
            ],
            "additionalProperties": false
          },
          "product": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Producto"
              },
              "short_name": {
                "type": "string",
                "description": "Nombre corto del Producto"
              },
              "name": {
                "type": "string",
                "description": "Nombre completo del Producto"
              },
              "interest_rate": {
                "type": "number",
                "description": "Cantidad en porcentaje del Interés del Producto"
              },
              "interest_rate_days": {
                "type": "number",
                "description": "Número de Días de tasa de interés del Producto"
              },
              "tax": {
                "type": "number",
                "description": "IVA del Producto"
              },
              "description": {
                "type": "string",
                "description": "Descripción del Producto"
              },
              "crowdfunding": {
                "type": "boolean",
                "description": "Recaudación de fondos"
              },
              "payment_periodicity_label": {
                "type": "string",
                "description": "Nombre del valor del Catalogo de Periodicidad de Pago del Producto"
              },
              "payment_periodicity_value": {
                "type": "number",
                "description": "Número de la Periodicidad de Pago del Producto"
              },
              "default_amount_cents": {
                "type": "number",
                "description": "Cantidad default en centavos del Crédito del Producto"
              },
              "minimum_amount_cents": {
                "type": "number",
                "description": "Cantidad mínima en centavos del Crédito del Producto"
              },
              "maximum_amount_cents": {
                "type": "number",
                "description": "Cantidad máxima en centavos del Crédito del Producto"
              },
              "installments_number": {
                "type": "number",
                "description": "Número de Plazos del Producto"
              },
              "installments_minimum": {
                "type": "number",
                "description": "Número mínimo de Plazos del Producto"
              },
              "installments_maximum": {
                "type": "number",
                "description": "Número máximo de Plazos del Producto"
              },
              "late_payment_interest": {
                "type": "number",
                "description": "Porcentaje del Interés moratorio del Producto"
              },
              "payment_days": {
                "type": "number",
                "description": "Número de días para pagar después de la fecha de corte"
              },
              "created_at": {
                "type": "string",
                "description": "Fecha de Creación del Producto"
              },
              "updated_at": {
                "type": "string",
                "description": "Última modificación del Producto"
              }
            },
            "required": [
              "id",
              "short_name",
              "name",
              "interest_rate",
              "interest_rate_days",
              "tax",
              "description",
              "crowdfunding",
              "payment_periodicity_label",
              "payment_periodicity_value",
              "default_amount_cents",
              "minimum_amount_cents",
              "maximum_amount_cents",
              "installments_number",
              "installments_minimum",
              "installments_maximum",
              "late_payment_interest",
              "payment_days",
              "created_at",
              "updated_at"
            ],
            "additionalProperties": false
          },
          "contract": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Contrato"
              },
              "title": {
                "type": "string",
                "description": "Título del Contrato"
              },
              "body": {
                "type": "string",
                "description": "Cuerpo del Contrato"
              }
            },
            "required": [
              "id",
              "title",
              "body"
            ],
            "additionalProperties": false
          },
          "incomes": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "classification": {
                  "type": "string",
                  "description": "Clasificación del Ingreso"
                },
                "amount_cents": {
                  "type": "number",
                  "description": "Cantidad Total en centavos del Ingreso"
                },
                "id": {
                  "type": "string",
                  "description": "ID único del Ingreso"
                },
                "created_at": {
                  "type": "string",
                  "description": "Fecha de Creación del Ingreso"
                }
              },
              "required": [
                "classification",
                "amount_cents",
                "id",
                "created_at"
              ]
            }
          },
          "expenses": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "classification": {
                  "type": "string",
                  "description": "Clasificación del Egreso"
                },
                "amount_cents": {
                  "type": "number",
                  "description": "Cantidad Total en centavos del Egreso"
                },
                "id": {
                  "type": "string",
                  "description": "ID único del Egreso"
                },
                "created_at": {
                  "type": "string",
                  "description": "Fecha de Creación del Egreso"
                }
              },
              "required": [
                "classification",
                "amount_cents",
                "id",
                "created_at"
              ]
            }
          },
          "references": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "classification": {
                  "type": "string",
                  "description": "Clasificación de la Referencia"
                },
                "name": {
                  "type": "string",
                  "description": "Nombre de la Referencia"
                },
                "phone": {
                  "type": "string",
                  "description": "Teléfono de la Referencia"
                },
                "id": {
                  "type": "string",
                  "description": "ID único de la Referencia"
                },
                "created_at": {
                  "type": "string",
                  "description": "Fecha de Creación del Egreso"
                }
              },
              "required": [
                "classification",
                "name",
                "phone",
                "id",
                "created_at"
              ]
            }
          },
          "attachments": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "ID único del Archivo"
                },
                "attachmentable_type": {
                  "type": "string",
                  "description": "Representa el recurso"
                },
                "attachmentable_id": {
                  "type": "string",
                  "description": "Representa el ID del recurso"
                },
                "attachment_type": {
                  "type": "string",
                  "description": "Tipo de documento del Archivo"
                },
                "file": {
                  "type": "string",
                  "description": "URL del Archivo"
                },
                "created_at": {
                  "type": "string",
                  "description": "Fecha de Creación del Archivo"
                }
              },
              "required": [
                "id",
                "attachmentable_type",
                "attachmentable_id",
                "attachment_type",
                "file",
                "created_at"
              ]
            }
          }
        },
        "required": [
          "id",
          "application_number"
        ]
      },
      "description": "Solicitudes de Crédito"
    },
    "links": {
      "type": "array",
      "items": [
        {
          "type": "object",
          "properties": {
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "id",
            "rel",
            "uri"
          ]
        }
      ],
      "description": "Links a referencias"
    }
  },
  "required": [
    "data",
    "links"
  ]
}

Obtener una Solicitud
GET/applications/{id}{?include}

Obtiene una sola Solicitud y todos sus detalles. Cuando se utiliza el parámetro include, recursos relacionados son incluidos.

Los valores válidos para el parámetro de include son income, expense, reference y attachment. Los valores deben ir separados por coma y sin espacios.

Para el atributo estado state los valores que se esperan recibir de una Solicitud son los siguientes:

  • ongoing - Se encuentra en trámite sin datos y lista para completarla.

  • score_flow - Se encuentra en calificación. Ha sido calificada por un Flujo de Calificación desde el Dashboard.

  • rejected - Se encuentra rechazada. Para que sea rechazada es necesario actualizar los atributos Notas del rechazo rejected_notes por un texto del motivo del rechazo y Fecha de Rechazo rejected_at por una fecha con formato 2019-02-12. Nota: Una Solicitud puede ser rechazada si se encuentra en trámite, calificacíon ó aprobada.

  • crowdfund - Se encuentra en campaña. Para que este en campaña por financiamiento colectivo es necesario crear una campaña relacionada con la Solicitud.

  • approved - Se encuentra aprobada. Para que sea aprobada es necesario actualizar los atributos Monto aprobado approved_amount_cents por una cantidad en centavos, Fecha de aprobación approved_at por una fecha con formato 2019-02-14 ó el atributo CLABE clabe para definir la clabe interbancaria. Nota: Para que pueda ser aprobada es necesario que haya pasado y cumplido con el Flujo de Calificación.

  • accepted - Se encuentra aceptada. Para que sea aceptada y a su vez convertirla a Crédito es necesario consultar Convertir Solicitudes a Crédito.

  • has_credit - Se encuentra en Crédito.

URI Parameters
HideShow
id
string (required) Example: 636264b1-77a2-45ef-b643-e44cfbc84d40

ID único de la Solicitud de Crédito a obtener

include
string (optional) Example: product,contract,income,expense,reference,attachment

Cadena de texto para indicar si la respuesta debe incluir recursos relacionados.


PATCH staging.creditar.io/applications/636264b1-77a2-45ef-b643-e44cfbc84d40?include=product,contract,income,expense,reference,attachment
Requestsexample 1
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Body
{
  "amount_cents": 500000,
  "installments": 12,
  "interest_rate": 20,
  "late_payment_interest": 5,
  "profits_percentage": 45,
  "multiple_output": 3,
  "flow": "inicio",
  "street_address": "Av. Carranza",
  "exterior_number_address": "1248",
  "interior_number_address": "1234",
  "neighborhood_address": "Colinas de Santa Bárbara",
  "state_address": "Colima",
  "city_address": "Villa de Álvarez",
  "zipcode_address": "28017",
  "home_phone": "3121225627",
  "mobile_phone": "3123452287",
  "classificaton": "Pagar deudas",
  "description": "Necesito consolidar deudas con un mejor interés",
  "metadata": {},
  "clabe": "002115016003269411",
  "maximum_penalty_days": 5,
  "payment_days": 20,
  "rejected_at": "2018-05-02",
  "rejected_notes": "No actualizó su documentación a tiempo.",
  "approved_at": "2018-05-02",
  "approved_amount_cents": 0,
  "accepted_at": "2018-05-01",
  "uid": "1"
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "amount_cents": {
      "type": "number",
      "description": "Total del Crédito Solicitado"
    },
    "installments": {
      "type": "number",
      "description": "Número de Plazos de la Solicitud de Crédito"
    },
    "interest_rate": {
      "type": "number",
      "description": "Porcentage de interés de la Solicitud de Crédito"
    },
    "late_payment_interest": {
      "type": "number",
      "description": "Porcentage de interés moratorio de la Solicitud de Crédito"
    },
    "profits_percentage": {
      "type": "number",
      "description": "Porcentage sobre utilidades del Fondo de Inversión Mezzanine"
    },
    "multiple_output": {
      "type": "number",
      "description": "Múltiplo de salida del Fondo de Inversión de Capital"
    },
    "flow": {
      "type": "string",
      "description": "Paso actual del flujo de la Solicitud de Crédito"
    },
    "street_address": {
      "type": "string",
      "description": "Calle"
    },
    "exterior_number_address": {
      "type": "string",
      "description": "Número exterior"
    },
    "interior_number_address": {
      "type": "string",
      "description": "Número interior"
    },
    "neighborhood_address": {
      "type": "string",
      "description": "Colonia"
    },
    "state_address": {
      "type": "string",
      "description": "Estado"
    },
    "city_address": {
      "type": "string",
      "description": "Ciudad"
    },
    "zipcode_address": {
      "type": "string",
      "description": "Código Postal"
    },
    "home_phone": {
      "type": "string",
      "description": "Teléfono de Casa"
    },
    "mobile_phone": {
      "type": "string",
      "description": "Mobile phone."
    },
    "classificaton": {
      "type": "string",
      "description": "Clasificación de la Solicitud de Crédito"
    },
    "description": {
      "type": "string",
      "description": "Descripción de la Solicitud de Crédito"
    },
    "metadata": {
      "type": "object",
      "properties": {},
      "description": "Atributos especiales de la Solicitud de Crédito"
    },
    "clabe": {
      "type": "string",
      "description": "CLABE"
    },
    "maximum_penalty_days": {
      "type": "number",
      "description": "Días máximos de penalizaciones"
    },
    "payment_days": {
      "type": [
        "number",
        "null"
      ],
      "description": "Días de pago de la Solicitud de Crédito"
    },
    "rejected_at": {
      "type": "string",
      "description": "Fecha de Rechazo"
    },
    "rejected_notes": {
      "type": "string",
      "description": "Notas del Rechazo"
    },
    "approved_at": {
      "type": "string",
      "description": "Fecha de Aprobación"
    },
    "approved_amount_cents": {
      "type": "number",
      "description": "Cantidad Aprobada del Crédito Solicitado"
    },
    "accepted_at": {
      "type": "string",
      "description": "Fecha de Aceptación"
    },
    "uid": {
      "type": "string",
      "description": "ID de usuario que realizó última modificación"
    }
  },
  "required": [
    "rejected_at",
    "rejected_notes",
    "approved_at",
    "approved_amount_cents",
    "accepted_at"
  ]
}
Responses202422404
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "amount_cents": 500000,
      "installments": 12,
      "interest_rate": 20,
      "late_payment_interest": 5,
      "profits_percentage": 45,
      "multiple_output": 3,
      "flow": "inicio",
      "street_address": "Av. Carranza",
      "exterior_number_address": "1248",
      "interior_number_address": "1234",
      "neighborhood_address": "Colinas de Santa Bárbara",
      "state_address": "Colima",
      "city_address": "Villa de Álvarez",
      "zipcode_address": "28017",
      "home_phone": "3121225627",
      "mobile_phone": "3123452287",
      "classificaton": "Pagar deudas",
      "description": "Necesito consolidar deudas con un mejor interés",
      "metadata": {},
      "clabe": "002115016003269411",
      "maximum_penalty_days": 5,
      "payment_days": 20,
      "id": "636264b1-77a2-45ef-b643-e44cfbc84d40",
      "application_number": "UENDSND-1",
      "rejected_at": "2018-05-02",
      "rejected_notes": "No actualizó su documentación a tiempo.",
      "approved_at": "2018-05-02",
      "approved_amount_cents": 0,
      "accepted_at": "2018-05-01",
      "first_payment_date": "2018-05-01",
      "closing_date_at": "2020-02-12",
      "state": "ongoing",
      "i18n_state": "En trámite",
      "maximum_amount_allowed_cents": 0,
      "maximum_credit_allowed": 0,
      "created_at": "2021-09-04T16:28:20.586-05:00",
      "updated_at": "2021-09-04T16:28:20.586-05:00",
      "accessories": [
        {
          "name": "Comisión por apertura",
          "calculation_type": "percentage",
          "calculation_base": "credit#ending_balance",
          "calculate_iva": true,
          "settings": {},
          "days_offset": 0,
          "active": true,
          "fixed_value_cents": 170000,
          "percentage": 1.5,
          "payment_base": "credit#approved_amount"
        }
      ],
      "product": {
        "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c"
      },
      "contract": {
        "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
      },
      "customer": {
        "id": "db2c210f-64a8-46ea-8e83-849b3cba60d4"
      },
      "incomes": [
        {
          "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21"
        }
      ],
      "expenses": [
        {
          "id": "eeedba2e-fc96-4f96-bd2e-bd046b256f96"
        }
      ],
      "references": [
        {
          "id": "0b19e3b6-9fae-40e1-a7c2-f2db1cae8a5a"
        }
      ],
      "attachments": [
        {
          "id": "aabfd43d-6f63-44dd-b7d9-9352a101d11e"
        }
      ]
    }
  ],
  "links": [
    {
      "rel": "self",
      "uri": "/applications/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "amount_cents": {
            "type": "number",
            "description": "Total del Crédito Solicitado"
          },
          "installments": {
            "type": "number",
            "description": "Número de Plazos de la Solicitud de Crédito"
          },
          "interest_rate": {
            "type": "number",
            "description": "Porcentage de interés de la Solicitud de Crédito"
          },
          "late_payment_interest": {
            "type": "number",
            "description": "Porcentage de interés moratorio de la Solicitud de Crédito"
          },
          "profits_percentage": {
            "type": "number",
            "description": "Porcentage sobre utilidades del Fondo de Inversión Mezzanine"
          },
          "multiple_output": {
            "type": "number",
            "description": "Múltiplo de salida del Fondo de Inversión de Capital"
          },
          "flow": {
            "type": "string",
            "description": "Paso actual del flujo de la Solicitud de Crédito"
          },
          "street_address": {
            "type": "string",
            "description": "Calle"
          },
          "exterior_number_address": {
            "type": "string",
            "description": "Número exterior"
          },
          "interior_number_address": {
            "type": "string",
            "description": "Número interior"
          },
          "neighborhood_address": {
            "type": "string",
            "description": "Colonia"
          },
          "state_address": {
            "type": "string",
            "description": "Estado"
          },
          "city_address": {
            "type": "string",
            "description": "Ciudad"
          },
          "zipcode_address": {
            "type": "string",
            "description": "Código Postal"
          },
          "home_phone": {
            "type": "string",
            "description": "Teléfono de Casa"
          },
          "mobile_phone": {
            "type": "string",
            "description": "Mobile phone."
          },
          "classificaton": {
            "type": "string",
            "description": "Clasificación de la Solicitud de Crédito"
          },
          "description": {
            "type": "string",
            "description": "Descripción de la Solicitud de Crédito"
          },
          "metadata": {
            "type": "object",
            "properties": {},
            "description": "Atributos especiales de la Solicitud de Crédito"
          },
          "clabe": {
            "type": "string",
            "description": "CLABE"
          },
          "maximum_penalty_days": {
            "type": "number",
            "description": "Días máximos de penalizaciones"
          },
          "payment_days": {
            "type": [
              "number",
              "null"
            ],
            "description": "Días de pago de la Solicitud de Crédito"
          },
          "id": {
            "type": "string",
            "description": "ID único de la Solicitud de Crédito"
          },
          "application_number": {
            "type": "string",
            "description": "Número de la Solicitud de Crédito"
          },
          "rejected_at": {
            "type": "string",
            "description": "Fecha de Rechazo"
          },
          "rejected_notes": {
            "type": "string",
            "description": "Notas del Rechazo"
          },
          "approved_at": {
            "type": "string",
            "description": "Fecha de Aprobación"
          },
          "approved_amount_cents": {
            "type": "number",
            "description": "Cantidad Aprobada del Crédito Solicitado"
          },
          "accepted_at": {
            "type": "string",
            "description": "Fecha de Aceptación"
          },
          "first_payment_date": {
            "type": "string",
            "description": "Fecha de pago inicial"
          },
          "closing_date_at": {
            "type": "string",
            "description": "Fecha de corte de la Solicitud de Crédito"
          },
          "state": {
            "type": "string",
            "description": "Estado actual de la Solicitud de Crédito"
          },
          "i18n_state": {
            "type": "string",
            "description": "Traducción del estado actual de la Solicitud de crédito"
          },
          "maximum_amount_allowed_cents": {
            "type": "number",
            "description": "Cantidad restante en centavos que puede solicitar el Cliente. Cero si no hay restricción"
          },
          "maximum_credit_allowed": {
            "type": "number",
            "description": "Cantidad restante de créditos que puede solicitar el Cliente. Cero si no hay restricción"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación de la Solicitud de Crédito"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación a la Solicitud de Crédito"
          },
          "accessories": {
            "type": "array",
            "description": "Accesorios"
          },
          "product": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Producto"
              }
            },
            "description": "Producto de la Solicitud de Crédito"
          },
          "contract": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Contrato"
              }
            },
            "description": "Contrato de la Solicitud de Crédito"
          },
          "customer": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Cliente"
              }
            },
            "description": "Cliente de la Solicitud del Crédito"
          },
          "incomes": {
            "type": "array"
          },
          "expenses": {
            "type": "array"
          },
          "references": {
            "type": "array"
          },
          "attachments": {
            "type": "array"
          }
        },
        "required": [
          "id",
          "application_number"
        ]
      },
      "description": "Solicitudes de Crédito"
    },
    "links": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "rel": {
            "type": "string"
          },
          "uri": {
            "type": "string"
          }
        },
        "required": [
          "rel",
          "uri"
        ]
      },
      "description": "Links a referencias"
    }
  },
  "required": [
    "links"
  ]
}
Headers
Content-Type: application/json
Body
{
  "errors": [
    {
      "type": "not_a_number",
      "code": "ERR-130",
      "message": "La cantidad del crédito debe ser un número de centavos.",
      "href": "staging.creditar.io/api/documentation#err-130"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "errors": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Tipo del Error"
          },
          "code": {
            "type": "string",
            "description": "Código único del Error"
          },
          "message": {
            "type": "string",
            "description": "Mensaje descriptivo del Error"
          },
          "href": {
            "type": "string",
            "description": "Enlace para obtener más información del Error"
          }
        },
        "required": [
          "type",
          "code",
          "message",
          "href"
        ]
      },
      "description": "Error ocurrido"
    }
  },
  "required": [
    "errors"
  ]
}
Headers
Content-Type: application/json
Body
{
  "errors": [
    {
      "type": "not_found",
      "code": "ERR-404",
      "message": "El recurso no existe.",
      "href": "staging.creditar.io/api/documentation#err-404"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "errors": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Tipo del Error"
          },
          "code": {
            "type": "string",
            "description": "Código único del Error"
          },
          "message": {
            "type": "string",
            "description": "Mensaje descriptivo del Error"
          },
          "href": {
            "type": "string",
            "description": "Enlace para obtener más información del Error"
          }
        },
        "required": [
          "type",
          "code",
          "message",
          "href"
        ]
      },
      "description": "Error ocurrido"
    }
  },
  "required": [
    "errors"
  ]
}

Actualizar una Solicitud
PATCH/applications/{id}{?include}

Actualiza una Solicitud existente.

URI Parameters
HideShow
id
string (required) Example: 636264b1-77a2-45ef-b643-e44cfbc84d40

ID único de la Solicitud de Crédito a obtener

include
string (optional) Example: product,contract,income,expense,reference,attachment

Cadena de texto para indicar si la respuesta debe incluir recursos relacionados.


Convertir Solicitudes a Crédito

Convertir Solicitudes a Crédito

POST staging.creditar.io/convert_application_to_credits
Requestsexample 1
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Body
{
  "credit_application_id": "636264b1-77a2-45ef-b643-e44cfbc84d40",
  "accepted_at": "2018-05-01",
  "first_payment_date": "2020-05-19",
  "closing_date_at": "2020-05-19",
  "payment_days": "20",
  "uid": "1"
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "credit_application_id": {
      "type": "string"
    },
    "accepted_at": {
      "type": "string",
      "description": "Fecha de Aceptación"
    },
    "first_payment_date": {
      "type": "string",
      "description": "Fecha de pago inicial para una Solicitud con Producto con Sistema de Amortización con Sistema Interés Global o Francés"
    },
    "closing_date_at": {
      "type": "string",
      "description": "Fecha de corte para una Solicitud con Producto con Sistema de Amortización con Línea de Crédito"
    },
    "payment_days": {
      "type": "string",
      "description": "Días de pago para una Solicitud con Producto con Sistema de Amortización con Línea de Crédito"
    },
    "uid": {
      "type": "string",
      "description": "ID de usuario que realizó última modificación"
    }
  },
  "required": [
    "credit_application_id",
    "accepted_at",
    "first_payment_date",
    "closing_date_at",
    "payment_days"
  ]
}
Responses201422
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "id": "1524b280-4512-48b6-babd-1759b478f9e9",
      "credit_type": "credit_simple",
      "i18n_credit_type": "Crédito simple",
      "installments_state": "up_to_date",
      "18n_installments_state": "Pagos al corriente",
      "capital_cents": 250000,
      "outstanding_balance_cents": 150000,
      "interest_paid_cents": 750,
      "iva_paid_cents": 850,
      "total_paid_cents": 170000,
      "created_at": "2018-09-11",
      "updated_at": "2018-09-11",
      "credit_application": {
        "id": "636264b1-77a2-45ef-b643-e44cfbc84d40"
      },
      "accessory_results": [
        {
          "name": "Comisión por apertura",
          "description": "Se ha aplicado comisión por apertura",
          "value_cents": "400000",
          "installment_number": "1",
          "status": "applied",
          "i18n_status": "Aplicado",
          "triggers_at": "30/08/2021 17:33"
        }
      ],
      "installments": [
        {
          "id": "19a211b9-e183-4f78-950d-542db0e94971"
        }
      ],
      "payments": [
        {
          "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c"
        }
      ]
    }
  ],
  "links": [
    {
      "rel": "self",
      "uri": "/credits/1524b280-4512-48b6-babd-1759b478f9e9"
    },
    {
      "id": "636264b1-77a2-45ef-b643-e44cfbc84d40",
      "rel": "credit_application",
      "uri": "/applications/636264b1-77a2-45ef-b643-e44cfbc84d40"
    },
    {
      "id": "19a211b9-e183-4f78-950d-542db0e94971",
      "rel": "installment",
      "uri": "/installments/19a211b9-e183-4f78-950d-542db0e94971"
    },
    {
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "rel": "payment",
      "uri": "/installments/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "ID único del Crédito"
          },
          "credit_type": {
            "type": "string",
            "description": "Tipo de crédito del Crédito"
          },
          "i18n_credit_type": {
            "type": "string",
            "description": "Traducción de tipo de crédito"
          },
          "installments_state": {
            "type": "string",
            "description": "Estado del crédito"
          },
          "18n_installments_state": {
            "type": "string",
            "description": "Traducción de estado del crédito"
          },
          "capital_cents": {
            "type": "number",
            "description": "Monto aprovado"
          },
          "outstanding_balance_cents": {
            "type": "number",
            "description": "Saldo pendiente que se debe en centavos"
          },
          "interest_paid_cents": {
            "type": "number",
            "description": "Intereses pagados en centavos"
          },
          "iva_paid_cents": {
            "type": "number",
            "description": "IVA pagado en centavos"
          },
          "total_paid_cents": {
            "type": "number",
            "description": "Total pagado en centavos"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación del Crédito"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación del Crédito"
          },
          "credit_application": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              }
            }
          },
          "accessory_results": {
            "type": "array",
            "description": "Resultados de accesorios"
          },
          "installments": {
            "type": "array"
          },
          "payments": {
            "type": "array"
          }
        },
        "required": [
          "id",
          "credit_type",
          "i18n_credit_type",
          "created_at",
          "updated_at"
        ]
      },
      "description": "Créditos"
    },
    "links": {
      "type": "array",
      "items": [
        {
          "type": "object",
          "properties": {
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          },
          "required": [
            "rel",
            "uri"
          ]
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          }
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          }
        },
        {
          "type": "object",
          "properties": {
            "id": {
              "type": "string"
            },
            "rel": {
              "type": "string"
            },
            "uri": {
              "type": "string"
            }
          }
        }
      ],
      "description": "Links a referencias"
    }
  }
}
Headers
Content-Type: application/json
Body
{
  "errors": [
    {
      "type": "inactive",
      "code": "ERR-120",
      "message": "La solicitud debe estar aprobada.",
      "href": "staging.creditar.io/api/documentation#err-120"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "errors": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Tipo del Error"
          },
          "code": {
            "type": "string",
            "description": "Código único del Error"
          },
          "message": {
            "type": "string",
            "description": "Mensaje descriptivo del Error"
          },
          "href": {
            "type": "string",
            "description": "Enlace para obtener más información del Error"
          }
        },
        "required": [
          "type",
          "code",
          "message",
          "href"
        ]
      },
      "description": "Error ocurrido"
    }
  },
  "required": [
    "errors"
  ]
}

Convierte una Solicitud a Crédito
POST/convert_application_to_credits

Convierte y acepta una Solicitud previamente aprobada a Crédito.


Inversionistas

Un inversionista es la representación de un Cliente

Inversionistas

Esta ruta solo listara los Inversionistas.

GET staging.creditar.io/crowdfunding/investors?cursor=5a36f715-1815-453e-81c5-68d0d1f96bc8
Requestsexample 1
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Responses200
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "id": "ae66de66-5187-4c5e-b53b-63da817ee998",
      "email": "bojack@horseman.io",
      "first_name": "Bojack",
      "second_name": "Harman",
      "last_name": "Horseman",
      "mother_name": "Chulte",
      "rfc": "BOJA1234",
      "curp": "BOJA1234567",
      "clabe": "1234567890",
      "blocked": false,
      "active": true,
      "official_id": "staging.creditar.io/rails/active_storage/blobs/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBFQT09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--19f8c22c36866305fa3878fe3a04e19a0fc6f4d1/WhatsApp%20Image%202018-03-06%20at%208.24.22%20PM.pdf",
      "invested_amount_cents": 20000,
      "available_balance_amount_cents": 10000,
      "signed_contract_at": "2018-05-04",
      "created_at": "2018-05-02",
      "updated_at": "2018-05-02",
      "customer": {
        "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21"
      },
      "funds": [
        {
          "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21"
        }
      ],
      "movements": [
        {
          "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21"
        }
      ],
      "contract": {
        "id": "b897a3fb-0a39-41bb-9d19-6564ddf622e0"
      }
    }
  ],
  "links": [
    {
      "rel": "self",
      "uri": "/crowdfunding/investors"
    }
  ],
  "pagination": {
    "cursors": {
      "after": "5a36f715-1815-453e-81c5-68d0d1f96bc8",
      "next_uri": "/crowdfunding/investors?cursor=5a36f715-1815-453e-81c5-68d0d1f96bc8"
    }
  }
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "ID único del Inversionista"
          },
          "email": {
            "type": "string",
            "description": "Correo electrónico del inversionista"
          },
          "first_name": {
            "type": "string",
            "description": "Nombre del Inversionista"
          },
          "second_name": {
            "type": "string",
            "description": "Segundo nombre del Inversionista"
          },
          "last_name": {
            "type": "string",
            "description": "Apellido paterno del Inversionista"
          },
          "mother_name": {
            "type": "string",
            "description": "Apellido materno del Inversionista"
          },
          "rfc": {
            "type": "string",
            "description": "RFC del inversionista"
          },
          "curp": {
            "type": "string",
            "description": "CURP del inversionista"
          },
          "clabe": {
            "type": "string",
            "description": "CLABE del inversionista"
          },
          "blocked": {
            "type": "boolean",
            "description": "Estado del bloqueo del Inversionista"
          },
          "active": {
            "type": "boolean",
            "description": "Estado del activo del Inversionista"
          },
          "official_id": {
            "type": [
              "string",
              "null"
            ],
            "description": "URL del documento oficial"
          },
          "invested_amount_cents": {
            "type": "number",
            "description": "Mónto invertido en Campaña de fondos en centavos"
          },
          "available_balance_amount_cents": {
            "type": "number",
            "description": "Mónto disponible para invertir en centavos"
          },
          "signed_contract_at": {
            "type": [
              "string",
              "null"
            ],
            "description": "Fecha de la firma del contrato del Inversionista"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación del Inversionista"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación del Inversionista"
          },
          "customer": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Cliente como Inversionista"
              }
            },
            "required": [
              "id"
            ],
            "additionalProperties": false
          },
          "funds": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "ID único del Fondo"
                }
              }
            }
          },
          "movements": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "ID único del Movimiento"
                }
              }
            }
          },
          "contract": {
            "type": [
              "object",
              "null"
            ],
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del contracto del inversionista"
              }
            }
          }
        },
        "required": [
          "id",
          "email",
          "available_balance_amount_cents",
          "created_at",
          "updated_at"
        ]
      },
      "description": "Inversionista"
    },
    "links": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "rel": {
            "type": "string"
          },
          "uri": {
            "type": "string"
          }
        },
        "required": [
          "rel",
          "uri"
        ]
      },
      "description": "Links a referencias."
    },
    "pagination": {
      "type": "object",
      "properties": {
        "cursors": {
          "type": "object",
          "properties": {
            "after": {
              "type": "string",
              "description": "Cursor al siguiente registro."
            },
            "next_uri": {
              "type": "string",
              "description": "URL para la siguiente página."
            }
          },
          "required": [
            "after",
            "next_uri"
          ],
          "description": "Cursores"
        }
      },
      "required": [
        "cursors"
      ],
      "description": "Información sobre la Paginación"
    }
  },
  "required": [
    "data",
    "links",
    "pagination"
  ]
}

Listar todos los Inversionistas
GET/crowdfunding/investors{?cursor}

La obtención de la lista de Inversionistas activos es una acción paginada. Se puede pasar el parámetro opcional cursor para obtener la siguiente página de Inversionistas. Esta ruta siempre regresará 20 Inversionistas por página.

Puedes utilizar algunos de los siguientes parámetros como filtros:

Parámetro Tipo de filtro Descripción
by_available_balance_amount_cents Entero Filtra por monto disponible para fondear
by_invested_amount_cents Entero Filtra por monto fondeado en campañas
by_created_at Rango de fecha Filtra por fecha de creación
by_updated_at Rango de fecha Filtra por fecha de última modificación
URI Parameters
HideShow
cursor
string (required) Example: 5a36f715-1815-453e-81c5-68d0d1f96bc8

Referencia del Cursor utilizado para paginar.


POST staging.creditar.io/crowdfunding/investors
Requestsexample 1
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Body
{
  "investorable_id": "5a36f715-1815-453e-81c5-68d0d1f96bc8",
  "investorable_type": "Customer"
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "investorable_id": {
      "type": "string",
      "description": "ID del Cliente que sera Inversionista"
    },
    "investorable_type": {
      "type": "string",
      "description": "Modelo que representa el Cliente que sera Inversionista"
    }
  },
  "required": [
    "investorable_id",
    "investorable_type"
  ]
}
Responses201422
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "id": "ae66de66-5187-4c5e-b53b-63da817ee998",
      "email": "bojack@horseman.io",
      "first_name": "Bojack",
      "second_name": "Harman",
      "last_name": "Horseman",
      "mother_name": "Chulte",
      "rfc": "BOJA1234",
      "curp": "BOJA1234567",
      "clabe": "1234567890",
      "blocked": false,
      "active": true,
      "official_id": "staging.creditar.io/rails/active_storage/blobs/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBFQT09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--19f8c22c36866305fa3878fe3a04e19a0fc6f4d1/WhatsApp%20Image%202018-03-06%20at%208.24.22%20PM.pdf",
      "invested_amount_cents": 20000,
      "available_balance_amount_cents": 10000,
      "signed_contract_at": "2018-05-04",
      "created_at": "2018-05-02",
      "updated_at": "2018-05-02",
      "customer": {
        "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21"
      },
      "funds": [
        {
          "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21"
        }
      ],
      "movements": [
        {
          "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21"
        }
      ],
      "contract": {
        "id": "b897a3fb-0a39-41bb-9d19-6564ddf622e0"
      }
    }
  ],
  "links": [
    {
      "rel": "self",
      "uri": "/crowdfunding/investors/636264b1-77a2-45ef-b643-e44cfbc84d40"
    },
    {
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "rel": "customer",
      "uri": "/customers/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    },
    {
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "rel": "fund",
      "uri": "/crowdfunding/funds/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    },
    {
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "rel": "movements",
      "uri": "/crowdfunding/movements/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "ID único del Inversionista"
          },
          "email": {
            "type": "string",
            "description": "Correo electrónico del inversionista"
          },
          "first_name": {
            "type": "string",
            "description": "Nombre del Inversionista"
          },
          "second_name": {
            "type": "string",
            "description": "Segundo nombre del Inversionista"
          },
          "last_name": {
            "type": "string",
            "description": "Apellido paterno del Inversionista"
          },
          "mother_name": {
            "type": "string",
            "description": "Apellido materno del Inversionista"
          },
          "rfc": {
            "type": "string",
            "description": "RFC del inversionista"
          },
          "curp": {
            "type": "string",
            "description": "CURP del inversionista"
          },
          "clabe": {
            "type": "string",
            "description": "CLABE del inversionista"
          },
          "blocked": {
            "type": "boolean",
            "description": "Estado del bloqueo del Inversionista"
          },
          "active": {
            "type": "boolean",
            "description": "Estado del activo del Inversionista"
          },
          "official_id": {
            "type": [
              "string",
              "null"
            ],
            "description": "URL del documento oficial"
          },
          "invested_amount_cents": {
            "type": "number",
            "description": "Mónto invertido en Campaña de fondos en centavos"
          },
          "available_balance_amount_cents": {
            "type": "number",
            "description": "Mónto disponible para invertir en centavos"
          },
          "signed_contract_at": {
            "type": [
              "string",
              "null"
            ],
            "description": "Fecha de la firma del contrato del Inversionista"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación del Inversionista"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación del Inversionista"
          },
          "customer": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Cliente como Inversionista"
              }
            },
            "required": [
              "id"
            ],
            "additionalProperties": false
          },
          "funds": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "ID único del Fondo"
                }
              }
            }
          },
          "movements": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "ID único del Movimiento"
                }
              }
            }
          },
          "contract": {
            "type": [
              "object",
              "null"
            ],
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del contracto del inversionista"
              }
            }
          }
        },
        "required": [
          "id",
          "email",
          "available_balance_amount_cents",
          "created_at",
          "updated_at"
        ]
      },
      "description": "Inversionista"
    },
    "links": {
      "type": "array",
      "description": "Links a referencias"
    }
  },
  "required": [
    "data"
  ]
}
Headers
Content-Type: application/json
Body
{
  "errors": [
    {
      "type": "invalid",
      "code": "ERR-500",
      "message": "La cuenta del usuario no existe",
      "href": "api/documentation#err-500"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "errors": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Tipo del Error"
          },
          "code": {
            "type": "string",
            "description": "Código único del Error"
          },
          "message": {
            "type": "string",
            "description": "Mensaje descriptivo del Error"
          },
          "href": {
            "type": "string",
            "description": "Enlace para obtener más información del Error"
          }
        },
        "required": [
          "type",
          "code",
          "message",
          "href"
        ]
      },
      "description": "Error ocurrido"
    }
  },
  "required": [
    "errors"
  ]
}

Crear un Inversionista
POST/crowdfunding/investors

Crea un nuevo Inversionista con la referencia de Cliente. Recibe un objeto de JSON con los parámetros de un Inversionista.


PATCH staging.creditar.io/crowdfunding/investors
Requestsexample 1
Headers
Content-Type: multipart/form-data
Accept: application/vnd.creditar.v1+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Responses202422
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "id": "ae66de66-5187-4c5e-b53b-63da817ee998",
      "email": "bojack@horseman.io",
      "first_name": "Bojack",
      "second_name": "Harman",
      "last_name": "Horseman",
      "mother_name": "Chulte",
      "rfc": "BOJA1234",
      "curp": "BOJA1234567",
      "clabe": "1234567890",
      "blocked": false,
      "active": true,
      "official_id": "staging.creditar.io/rails/active_storage/blobs/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBFQT09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--19f8c22c36866305fa3878fe3a04e19a0fc6f4d1/WhatsApp%20Image%202018-03-06%20at%208.24.22%20PM.pdf",
      "invested_amount_cents": 20000,
      "available_balance_amount_cents": 10000,
      "signed_contract_at": "2018-05-04",
      "created_at": "2018-05-02",
      "updated_at": "2018-05-02",
      "customer": {
        "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21"
      },
      "funds": [
        {
          "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21"
        }
      ],
      "movements": [
        {
          "id": "3c8b46ce-a5f2-4f25-8280-a80551eacd21"
        }
      ],
      "contract": {
        "id": "b897a3fb-0a39-41bb-9d19-6564ddf622e0"
      }
    }
  ],
  "links": [
    {
      "rel": "self",
      "uri": "/crowdfunding/investors/636264b1-77a2-45ef-b643-e44cfbc84d40"
    },
    {
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "rel": "customer",
      "uri": "/customers/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    },
    {
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "rel": "fund",
      "uri": "/crowdfunding/funds/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    },
    {
      "id": "6313ac69-dc0d-45a8-8804-4ac451e1db5c",
      "rel": "movements",
      "uri": "/crowdfunding/movements/6313ac69-dc0d-45a8-8804-4ac451e1db5c"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "ID único del Inversionista"
          },
          "email": {
            "type": "string",
            "description": "Correo electrónico del inversionista"
          },
          "first_name": {
            "type": "string",
            "description": "Nombre del Inversionista"
          },
          "second_name": {
            "type": "string",
            "description": "Segundo nombre del Inversionista"
          },
          "last_name": {
            "type": "string",
            "description": "Apellido paterno del Inversionista"
          },
          "mother_name": {
            "type": "string",
            "description": "Apellido materno del Inversionista"
          },
          "rfc": {
            "type": "string",
            "description": "RFC del inversionista"
          },
          "curp": {
            "type": "string",
            "description": "CURP del inversionista"
          },
          "clabe": {
            "type": "string",
            "description": "CLABE del inversionista"
          },
          "blocked": {
            "type": "boolean",
            "description": "Estado del bloqueo del Inversionista"
          },
          "active": {
            "type": "boolean",
            "description": "Estado del activo del Inversionista"
          },
          "official_id": {
            "type": [
              "string",
              "null"
            ],
            "description": "URL del documento oficial"
          },
          "invested_amount_cents": {
            "type": "number",
            "description": "Mónto invertido en Campaña de fondos en centavos"
          },
          "available_balance_amount_cents": {
            "type": "number",
            "description": "Mónto disponible para invertir en centavos"
          },
          "signed_contract_at": {
            "type": [
              "string",
              "null"
            ],
            "description": "Fecha de la firma del contrato del Inversionista"
          },
          "created_at": {
            "type": "string",
            "description": "Fecha de Creación del Inversionista"
          },
          "updated_at": {
            "type": "string",
            "description": "Última modificación del Inversionista"
          },
          "customer": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del Cliente como Inversionista"
              }
            },
            "required": [
              "id"
            ],
            "additionalProperties": false
          },
          "funds": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "ID único del Fondo"
                }
              }
            }
          },
          "movements": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "string",
                  "description": "ID único del Movimiento"
                }
              }
            }
          },
          "contract": {
            "type": [
              "object",
              "null"
            ],
            "properties": {
              "id": {
                "type": "string",
                "description": "ID único del contracto del inversionista"
              }
            }
          }
        },
        "required": [
          "id",
          "email",
          "available_balance_amount_cents",
          "created_at",
          "updated_at"
        ]
      },
      "description": "Inversionista"
    },
    "links": {
      "type": "array",
      "description": "Links a referencias"
    }
  },
  "required": [
    "data"
  ]
}
Headers
Content-Type: application/json
Body
{
  "errors": [
    {
      "type": "invalid",
      "code": "ERR-500",
      "message": "La fecha de firma del contrato debe ser igual o mayor a la fecha actual",
      "href": "api/documentation#err-"
    }
  ]
}
Schema
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "type": "object",
  "properties": {
    "errors": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "Tipo del Error"
          },
          "code": {
            "type": "string",
            "description": "Código único del Error"
          },
          "message": {
            "type": "string",
            "description": "Mensaje descriptivo del Error"
          },
          "href": {
            "type": "string",
            "description": "Enlace para obtener más información del Error"
          }
        },
        "required": [
          "type",
          "code",
          "message",
          "href"
        ]
      },
      "description": "Error ocurrido"
    }
  },
  "required": [
    "errors"
  ]
}

Actualizar un Inversionista
PATCH/crowdfunding/investors

Actualiza un Inversionista. A diferencia de las demas rutas esta no recibe ningún JSON, sino un mensaje de tipo multipart/form-data. El mensaje deberá incluir los siguientes campos:

Campo Descripción
first_name Primer nombre del inversionista.
second_name Segundo nombre del inversionista.
last_name Apellido paterno del inversionista.
mother_name Apellido materno del inversionista.
rfc RFC del inversionista.
curp CURP del inversionista.
clabe CLABE interbancaria del inversionista.
blocked Bloqueo del inversionista.
official_id Documento de identidad oficial del inversionista. Representa el archivo que se subirán los formatos aceptados son GIF, TIFF, PNG, JPG/JPEG y PDF; el tamaño del archivo debe ser menor a 7 MB.
signed_contract_at Fecha de firma del contrato del inversionista.

Nota: Para poder activar un Inversionista desde la API es primero actualizar el Documento de identidad oficial y después definir la Fecha de firma de contrato.


Inversionista

GET staging.creditar.io/crowdfunding/investors/6313ac69-dc0d-45a8-8804-4ac451e1db5c?include=investor,fund,movement,contract
Requestsinclude is not setinclude is set to customerinclude is set to fundinclude is set to movementinclude is set to contractinclude is set to customer,fund,movement,contract
Headers
Content-Type: application/json
Accept: application/vnd.creditar.v2+json
Authorization: Token token=BMBE96Wva8NaYMmVx4RavpXSy6Y6HKFe
Responses200404
Headers
Content-Type: application/json
Body
{
  "data": [
    {
      "id": "ae66de66-5187-4c5e-b53b-63da817ee998",
      "email": "bojack@horseman.io",
      "first_name": "Bojack",
      "second_name": "Harman",
      "last_name": "Horseman",
      "mother_name": "Chulte",
      "rfc": "BOJA1234",
      "curp": "BOJA1234567",
      "clabe": "1234567890",
      "blocked": false,
      "active": true,
      "official_id": "staging.creditar.io/rails/active_storage/blobs/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBFQT09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--19f8c22c36866305fa3878fe3a04e19a0fc6f4d1/WhatsApp%20Image%202018-03-06%20at%208.24.22%20PM.pdf",
      "invested_amount_cent