ParseDeepLink parses a link in the form of berty://xxx or https://berty.tech/id# and returns a structure that can be used to display information. This action is read-only.
POST
/messenger/v1/ParseDeepLink
curl \
-X POST http://api.example.com/messenger/v1/ParseDeepLink \
-d '{"link":"string"}'
Request example
{
"link": "string"
}
Request examples
{
"link": "string"
}
Response examples (200)
{
"kind": "UnknownKind",
"berty_id": {
"public_rendezvous_seed": "string",
"account_pk": "string",
"display_name": "string"
},
"berty_group": {
"group": {
"public_key": "string",
"secret": "string",
"secret_sig": "string",
"group_type": "GroupTypeUndefined"
},
"display_name": "string"
}
}
Response examples (200)
{
"kind": "UnknownKind",
"berty_id": {
"public_rendezvous_seed": "string",
"account_pk": "string",
"display_name": "string"
},
"berty_group": {
"group": {
"public_key": "string",
"secret": "string",
"secret_sig": "string",
"group_type": "GroupTypeUndefined"
},
"display_name": "string"
}
}
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"
}
]
}