Kontaktwege ändern
Die Endpunkte der Version 1.2 sind momentan in der Entwicklung und können noch Änderungen erfahren.
Neue Kommunikationswege erfassen
Version 1.0
post
Authorizations
Path parameters
personIdinteger · int32Required
Query parameters
apiKeystringOptional
Body
CommunicationTypeIdinteger · int32Optional
RelatedAddressIdinteger · int32 | nullableOptional
Contentstring | nullableOptional
Explanationstring | nullableOptional
Responses
201
Created
Responseinteger · int32
400
Bad Request
401
Unauthorized
post
POST /openwowi/v1.0/PersonsWrite/Person/{personId}/Communications HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 84
{
"CommunicationTypeId": 1,
"RelatedAddressId": 1,
"Content": "text",
"Explanation": "text"
}
1
Version 1.2
post
Authorizations
Path parameters
personIdinteger · int32Required
Query parameters
apiKeystringOptional
Body
CommunicationTypeIdinteger · int32Optional
RelatedAddressIdinteger · int32 | nullableOptional
Contentstring | nullableOptional
Explanationstring | nullableOptional
Responses
201
Created
Responseinteger · int32
400
Bad Request
401
Unauthorized
post
POST /openwowi/v1.2/PersonsWrite/Person/{personId}/Communications HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 84
{
"CommunicationTypeId": 1,
"RelatedAddressId": 1,
"Content": "text",
"Explanation": "text"
}
1
Bestehende Kommunikationswege ändern
Version 1.0
put
Authorizations
Path parameters
personIdinteger · int32Required
childIdinteger · int32Required
Query parameters
apiKeystringOptional
Body
CommunicationTypeIdinteger · int32Optional
RelatedAddressIdinteger · int32 | nullableOptional
Contentstring | nullableOptional
Explanationstring | nullableOptional
Responses
200
OK
Responseinteger · int32
400
Bad Request
401
Unauthorized
put
PUT /openwowi/v1.0/PersonsWrite/Person/{personId}/Communications/{childId} HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 84
{
"CommunicationTypeId": 1,
"RelatedAddressId": 1,
"Content": "text",
"Explanation": "text"
}
1
Version 1.2
put
Authorizations
Path parameters
personIdinteger · int32Required
childIdinteger · int32Required
Query parameters
apiKeystringOptional
Body
CommunicationTypeIdinteger · int32Optional
RelatedAddressIdinteger · int32 | nullableOptional
Contentstring | nullableOptional
Explanationstring | nullableOptional
Responses
200
OK
Responseinteger · int32
400
Bad Request
401
Unauthorized
put
PUT /openwowi/v1.2/PersonsWrite/Person/{personId}/Communications/{childId} HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 84
{
"CommunicationTypeId": 1,
"RelatedAddressId": 1,
"Content": "text",
"Explanation": "text"
}
1
Bestehende Kommunikationswege löschen
Version 1.0
delete
Authorizations
Path parameters
personIdinteger · int32Required
childIdinteger · int32Required
Query parameters
apiKeystringOptional
Responses
200
OK
Responseinteger · int32
400
Bad Request
401
Unauthorized
delete
DELETE /openwowi/v1.0/PersonsWrite/Person/{personId}/Communications/{childId} HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
1
Version 1.2
delete
Authorizations
Path parameters
personIdinteger · int32Required
childIdinteger · int32Required
Query parameters
apiKeystringOptional
Responses
200
OK
Responseinteger · int32
400
Bad Request
401
Unauthorized
delete
DELETE /openwowi/v1.2/PersonsWrite/Person/{personId}/Communications/{childId} HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
1
Last updated