Gets the user's current contact import status. Requires authentication.
Output
Encoding
application/jsonsyncStatus
refapp.bsky.contact.defs#syncStatus
Optional
If present, indicates the user has imported their contacts. If not present, indicates the user never used the feature or called `app.bsky.contact.removeData` and didn't import again since.
Errors
InvalidDid
InternalError
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "InvalidDid"
},
{
"name": "InternalError"
}
],
"output": {
"schema": {
"type": "object",
"properties": {
"syncStatus": {
"ref": "app.bsky.contact.defs#syncStatus",
"type": "ref",
"description": "If present, indicates the user has imported their contacts. If not present, indicates the user never used the feature or called `app.bsky.contact.removeData` and didn't import again since."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {}
},
"description": "Gets the user's current contact import status. Requires authentication."
}