GET
/
destinations
/
{destination_id}
/
objects
/
{object_full_name}
/
refresh_fields_status
curl --request GET \
  --url https://app.getcensus.com/api/v1/destinations/{destination_id}/objects/{object_full_name}/refresh_fields_status \
  --header 'Authorization: Bearer <token>'
{
  "status": "processing"
}

Authorizations

Authorization
string
header
required

Bearer token for the current workspace. Can be retrieved from the Workspace's settings page.

Path Parameters

destination_id
integer
required

ID of the destination

object_full_name
string
required

full_name of the destination object with an active refresh job

Query Parameters

refresh_key
integer
required

An id provided by the refresh_fields endpoint, used to check whether the refresh fields job has finished.

Response

200 - application/json
Successfully checked the status of the job.
status
enum<string>

Status of the job.

Available options:
completed,
processing
Example:

"processing"