ContactRequestAccept accepts a contact request

POST /protocol/v1/ContactRequestAccept

Body Required

  • contact_pk string(byte)

Responses

  • 200

    A successful response.

  • default

    An unexpected error response

    Hide response attributes Show response attributes object
    • error string
    • code integer(int32)
    • message string
    • details array[object]
      Hide details attributes Show details attributes array[object]
      • type_url string
      • value string(byte)
POST /protocol/v1/ContactRequestAccept
curl \
 -X POST http://api.example.com/protocol/v1/ContactRequestAccept \
 -d '{"contact_pk":"string"}'
Request example
{
  "contact_pk": "string"
}
Request examples
{
  "contact_pk": "string"
}
Response examples (200)
{}
Response examples (200)
{}
Response examples (default)
{
  "error": "string",
  "code": 42,
  "message": "string",
  "details": [
    {
      "type_url": "string",
      "value": "string"
    }
  ]
}
Response examples (default)
{
  "error": "string",
  "code": 42,
  "message": "string",
  "details": [
    {
      "type_url": "string",
      "value": "string"
    }
  ]
}