Skip to main content

Update entity in QuotationPropertyValues

PATCH 

https://api.elfsquad.io/data/1/QuotationPropertyValues(:id)

Update entity in QuotationPropertyValues

Request

Path Parameters

    id uuidrequired

    Possible values: Value must match regular expression ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$

    key: id of QuotationPropertyValue

Bodyrequired

New property values

    entityIduuid
    entityPropertyIduuid
    valuestring
    iduuid
    createdDatedate-time
    updatedDatedate-time
    organizationIduuid
    referencestring
    creatorIduuid
    customField1string
    customField2string
    customField3string
    customField4string
    customField5string
    organization

Responses

Success

var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.elfsquad.io/data/1");
var content = new StringContent(string.Empty);
content.Headers.ContentType = new MediaTypeHeaderValue("application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.elfsquad.io/data/1
Parameters
— pathrequired
Body required
{
  "entityId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "entityPropertyId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "value": "string",
  "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "createdDate": "2024-07-29T15:51:28.071Z",
  "updatedDate": "2024-07-29T15:51:28.071Z",
  "organizationId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "reference": "string",
  "creatorId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
  "customField1": "string",
  "customField2": "string",
  "customField3": "string",
  "customField4": "string",
  "customField5": "string",
  "organization": {}
}
ResponseClear

Click the Send API Request button above and see the response here!