DevShareInstanceBertyID shares your Berty ID on a dev channel. TODO: remove for public.

POST /messenger/v1/DevShareInstanceBertyID

Body Required

  • reset boolean(boolean)
  • display_name string

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 /messenger/v1/DevShareInstanceBertyID
curl \
 -X POST http://api.example.com/messenger/v1/DevShareInstanceBertyID \
 -d '{"reset":true,"display_name":"string"}'
Request example
{
  "reset": true,
  "display_name": "string"
}
Request examples
{
  "reset": true,
  "display_name": "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"
    }
  ]
}