POST api/v1/values/login?email={email}&password={password}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
email

string

Required

password

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CF_SIFRE
NameDescriptionTypeAdditional information
USRNM

string

String length: inclusive between 0 and 8

EK_METIN

string

String length: inclusive between 0 and 30

KULLANICI_ID

integer

None.

CRM_KUL_ID

decimal number

None.

E_POSTA

string

String length: inclusive between 0 and 50

Response Formats

application/json, text/json

Sample:
[
  {
    "USRNM": "sample string 1",
    "EK_METIN": "sample string 2",
    "KULLANICI_ID": 3,
    "CRM_KUL_ID": 4.0,
    "E_POSTA": "sample string 5"
  },
  {
    "USRNM": "sample string 1",
    "EK_METIN": "sample string 2",
    "KULLANICI_ID": 3,
    "CRM_KUL_ID": 4.0,
    "E_POSTA": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCF_SIFRE xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CFAndroidService.Models">
  <CF_SIFRE>
    <CRM_KUL_ID>4</CRM_KUL_ID>
    <EK_METIN>sample string 2</EK_METIN>
    <E_POSTA>sample string 5</E_POSTA>
    <KULLANICI_ID>3</KULLANICI_ID>
    <USRNM>sample string 1</USRNM>
  </CF_SIFRE>
  <CF_SIFRE>
    <CRM_KUL_ID>4</CRM_KUL_ID>
    <EK_METIN>sample string 2</EK_METIN>
    <E_POSTA>sample string 5</E_POSTA>
    <KULLANICI_ID>3</KULLANICI_ID>
    <USRNM>sample string 1</USRNM>
  </CF_SIFRE>
</ArrayOfCF_SIFRE>