propertymappings_all_test_create
POST/api/v3//propertymappings/all/:pm_uuid/test/
Test Property Mapping
Request
Path Parameters
pm_uuid uuidrequired
A UUID string identifying this Property Mapping.
Query Parameters
format_result boolean
- application/json
Body
user integernullable
context
object
group uuidnullable
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (from schema)
Schema
result stringrequired
successful booleanrequired
{
"result": "string",
"successful": true
}
Invalid parameters
- application/json
- Schema
- Example (from schema)
Schema
detail stringrequired
code string
{
"detail": "string",
"code": "string"
}
Authorization: http
name: authentiktype: httpscheme: bearer
- 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.Post, "/api/v3/propertymappings/all/:pm_uuid/test/");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Authorization", "Bearer <TOKEN>");
var content = new StringContent("{\n \"user\": 0,\n \"context\": {},\n \"group\": \"3fa85f64-5717-4562-b3fc-2c963f66afa6\"\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());