Update entity in QuotationPropertyValues
PATCHhttps://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
- application/json
Bodyrequired
New property values
entityIduuid
entityPropertyIduuid
valuestring
iduuid
createdDatedate-time
updatedDatedate-time
organizationIduuid
referencestring
creatorIduuid
customField1string
customField2string
customField3string
customField4string
customField5string
organization
Responses
- 204
- default
Success
error
- */*
- Schema
- Example (auto)
Schema
error objectrequired
{
"error": {
"code": "string",
"message": "string",
"target": "string",
"details": [
{
"code": "string",
"message": "string",
"target": "string"
}
],
"innererror": {}
}
}
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
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());
ResponseClear