E-Invoicing Platform
  1. Auth
E-Invoicing Platform
  • Auth
    • /api/Auth/Login
      POST
    • /api/Auth/Register
      POST
    • /api/Auth/ForgotPassword
      POST
    • /api/Auth/ChangePasswordForUsingToken
      PUT
    • /api/Auth/ChangePassword
      PUT
  • BulkInvoice
    • /api/BulkInvoice/Create
      POST
    • /api/BulkInvoice/List
      GET
    • /api/BulkInvoice/Get
      GET
    • /api/BulkInvoice/Process
      PUT
    • /api/BulkInvoice/Delete
      DELETE
  • Common
    • /api/Common/GetInvoiceTypes
      GET
    • /api/Common/InvoiceTypes
      GET
    • /api/Common/GetSpecialInfoPaymentMethods
      GET
    • /api/Common/PaymentMethods
      GET
    • /api/Common/GetMedioPagos
      GET
    • /api/Common/PaymentMedias
      GET
    • /api/Common/GetSaleTransactionVentoTypes
      GET
    • /api/Common/SaleTransactionTypes
      GET
    • /api/Common/GetTransactionCompraTypes
      GET
    • /api/Common/PurchaseTransactionTypes
      GET
    • /api/Common/GetReferenceInvoiceTypes
      GET
  • Folio
    • /api/Folio/GetFolioBlocks
      GET
    • /api/Folio/List
      GET
    • /api/Folio/Upload
      POST
    • /api/Folio/Activate
      PUT
    • /api/Folio/Delete
      DELETE
  • IpAddressWhiteList
    • /api/IpAddressWhiteList/GetWhiteList
    • /api/IpAddressWhiteList/List
    • /api/IpAddressWhiteList/Create
    • /api/IpAddressWhiteList/Delete
    • /api/IpAddressWhiteList/Update
  • PdfTemplate
    • /api/PdfTemplate/List
    • /api/PdfTemplate/Get
    • /api/PdfTemplate/Create
    • /api/PdfTemplate/Update
    • /api/PdfTemplate/Delete
  • Reports
    • /api/Reports/GetChannelDataReport
    • /api/Reports/OverviewDataReport
  • Role
    • /api/Role/GetRoles
    • /api/Role/List
    • /api/Role/Create
    • /api/Role/CreateRoleClaim
    • /api/Role/GetClaims
    • /api/Role/GetRoleClaims
    • /api/Role/UserAssignmentToRole
    • /api/Role/Delete
    • /api/Role/DeleteRoleClaim
  • Tenant
    • /api/Tenant/GetAccessKeyAndSecretKeyValidation
    • /api/Tenant/Update
    • /api/Tenant/TenantCacheRefresh
    • /api/Tenant/Certificate
    • /api/Tenant/GetTenant
  • User
    • /api/User/Create
    • /api/User/GetUsers
    • /api/User/Delete
  • Webhook
    • /api/Webhook/Save
    • /api/Webhook/GetWebhook
    • /api/Webhook/GetWebhooks
  • AuditLogs
    • /api/AuditLogs/List
  1. Auth

/api/Auth/Login

POST
/api/Auth/Login

Request

Body Params application/json

Examples

Responses

🟢200OK
text/plain
Success
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/Auth/Login' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "string",
    "password": "string"
}'
Response Response Example
{
    "success": true,
    "statusCode": 0,
    "errorCode": "string",
    "errors": [
        "string"
    ],
    "result": {
        "accessToken": "string",
        "expiration": "2019-08-24T14:15:22Z",
        "user": {
            "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
            "userName": "string",
            "fullName": "string",
            "email": "string",
            "companyTitle": "string"
        }
    }
}
Modified at 2025-06-25 13:14:45
Next
/api/Auth/Register
Built with