chat.bsky.convo.getConvoForMembers
Schema Diff
+3 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "chat.bsky.convo.getConvoForMembers",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"errors": [
7
7
{
8
8
"name": "AccountSuspended"
9
9
},
10
10
{
11
11
"name": "BlockedActor"
12
12
},
13
13
{
14
+
"name": "BlockedSubject"
15
+
},
16
+
{
14
17
"name": "MessagesDisabled"
15
18
},
16
19
{
17
20
"name": "NotFollowedBySender"
18
21
},
19
22
{
20
23
"name": "RecipientNotFound"
21
24
}
22
25
],
23
26
"output": {
24
27
"schema": {
25
28
"type": "object",
26
29
"required": [
27
30
"convo"
28
31
],
29
32
"properties": {
30
33
"convo": {
31
34
"ref": "chat.bsky.convo.defs#convoView",
32
35
"type": "ref"
33
36
}
34
37
}
35
38
},
36
39
"encoding": "application/json"
37
40
},
38
41
"parameters": {
39
42
"type": "params",
40
43
"required": [
41
44
"members"
42
45
],
43
46
"properties": {
44
47
"members": {
45
48
"type": "array",
46
49
"items": {
47
50
"type": "string",
48
51
"format": "did"
49
52
},
50
53
"maxLength": 10,
51
54
"minLength": 1
52
55
}
53
56
}
54
57
},
55
58
"description": "Get or create a 1-1 conversation for the given members. Always returns the same direct (non-group) conversation. To create a group conversation, use createGroup."
56
59
}
57
60
},
58
61
"$type": "com.atproto.lexicon.schema",
59
62
"lexicon": 1
60
63
}