Get a single job listing by repo (DID) and record key
Parameters
Output
Encoding
application/jsoncid
stringcid
Optional
CID of the listing record
uri
stringat-uri
Required
AT-URI of the listing
value
refplace.atwork.listing
Required
The job listing record
Errors
ListingNotFound
The requested listing does not exist ListingParseFailed
Failed to parse the listing data ListingFetchFailed
Failed to fetch the listing from storage Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"errors": [
{
"name": "ListingNotFound",
"description": "The requested listing does not exist"
},
{
"name": "ListingParseFailed",
"description": "Failed to parse the listing data"
},
{
"name": "ListingFetchFailed",
"description": "Failed to fetch the listing from storage"
}
],
"output": {
"schema": {
"type": "object",
"required": [
"uri",
"value"
],
"properties": {
"cid": {
"type": "string",
"format": "cid",
"description": "CID of the listing record"
},
"uri": {
"type": "string",
"format": "at-uri",
"description": "AT-URI of the listing"
},
"value": {
"ref": "place.atwork.listing",
"type": "ref",
"description": "The job listing record"
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"repo",
"rkey"
],
"properties": {
"repo": {
"type": "string",
"format": "at-identifier",
"description": "The DID of the repo (repository owner)"
},
"rkey": {
"type": "string",
"description": "The record key (TID)"
}
}
},
"description": "Get a single job listing by repo (DID) and record key"
}