PUT api/citas/{id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
CitaName | Description | Type | Additional information |
---|---|---|---|
ID_CITA | integer |
None. |
|
FECHA | date |
None. |
|
ID_SERVICIO | integer |
None. |
|
ESTADO | string |
None. |
|
SERVICIO_NOMBRE | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "ID_CITA": 1, "FECHA": "2025-08-01T19:00:27.5008145-05:00", "ID_SERVICIO": 3, "ESTADO": "sample string 4", "SERVICIO_NOMBRE": "sample string 5" }
application/xml, text/xml
Sample:
<Cita xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Estudio_de_Belleza.Models"> <ESTADO>sample string 4</ESTADO> <FECHA>2025-08-01T19:00:27.5008145-05:00</FECHA> <ID_CITA>1</ID_CITA> <ID_SERVICIO>3</ID_SERVICIO> <SERVICIO_NOMBRE>sample string 5</SERVICIO_NOMBRE> </Cita>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.