Seliom
Español
Español
  • Bienvenido a Seliom
  • Empezar con Seliom
    • Tutorial de Inicio
      • Añadir miembros al equipo
      • Cómo diseñar tu primer proceso
      • Crea tu proceso con Seliom
      • Lanza tu proceso Seliom
  • API
    • Introducción
    • Authorización
    • Procesos
    • Casos
  • Resources
    • ¿Por qué usar Seliom?
    • Preguntas Frecuentes
Powered by GitBook
On this page

Was this helpful?

  1. API

Authorización

Esta página aún no ha sido traducida al español.

After obtaining your account's API Token, you should test your connection with our whoami endpoint.

All requests made to Seliom's API should include the following headers:

  • Authorization: your auth token.

  • X-Organization: your organization's UUID.

  • Content-Type: application/json

Who Am I?

GET https://api.seliom.com/whoami

This endpoint validates your API token and returns information about yourself.

Headers

Name
Type
Description

Content-Type

string

application/json

X-ORGANIZATION

string

UUID of the organization for which you are making the request

Authentication

string

Your authentication token

{    
   "first_name": "Clark",    
   "last_name": "Kent",
   "organization": "Seliom"
}
{    
   "message": "Please log in to continue."
}

PreviousIntroducciónNextProcesos

Last updated 4 years ago

Was this helpful?