ContactRequestSend attempt to send a contact request

POST /protocol/v1/ContactRequestSend

Body Required

  • contact object
    Hide contact attributes Show contact attributes object
    • pk string(byte)
    • public_rendezvous_seed string(byte)
    • metadata string(byte)
  • own_metadata 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/ContactRequestSend
curl \
 -X POST http://api.example.com/protocol/v1/ContactRequestSend \
 -d '{"contact":{"pk":"string","public_rendezvous_seed":"string","metadata":"string"},"own_metadata":"string"}'
Request example
{
  "contact": {
    "pk": "string",
    "public_rendezvous_seed": "string",
    "metadata": "string"
  },
  "own_metadata": "string"
}
Request examples
{
  "contact": {
    "pk": "string",
    "public_rendezvous_seed": "string",
    "metadata": "string"
  },
  "own_metadata": "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"
    }
  ]
}