Skip to main content
GET
/
v1
/
brands
/
{brand_id}
/
proposals
/
{id}
/
compatibility-rulesets-failure-reports
/
Get a rulesets failure reports
curl --request GET \
  --url https://marketplace-api.fabric.inc/v1/brands/{brand_id}/proposals/{id}/compatibility-rulesets-failure-reports/ \
  --header 'Authorization: Bearer <token>'
{
  "id": 1762791,
  "content_type": 9,
  "object_id": 1298,
  "connection": null,
  "runtime_id": "3af6d254-066d-4a19-9f44-78d7f9ed28a2",
  "module_name": "create_compatibility_rulesets_failure_report",
  "created_at": "2023-12-07T23:14:23.000Z",
  "start_time": null,
  "finish_time": null,
  "description": null,
  "total_success": null,
  "total_failure": null,
  "metadata": {
    "id": 17331237,
    "content_type": 124,
    "object_id": 1762791,
    "type": "string",
    "name": "ruleset_failure_report",
    "value": "https://assets-staging.revcascade.com/temp_files/5d88c779-9bc5-4401-9073-024b106fe00a/Ruleset_Failure_Report_20231207_231424.csv",
    "created_at": "2023-12-07T23:14:24.000Z"
  },
  "error_count": 0,
  "error_logs": []
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

brand_id
number
required

The unique brand ID. In the Dropship UI this is called the Supplier ID. To find your Supplier ID, click your supplier name in the top nav.

id
integer
required

The unique proposal id. This ID is automatically generated when a proposal is created.

Response

200 - application/json

OK

Represents the details of a background job or process, including its status, associated objects, and any generated reports.

id
integer

The unique identifier for the job.

Example:

1762791

content_type
integer

An identifier for the type of content or operation the job relates to.

Example:

9

object_id
integer

The ID of the primary object associated with this job (e.g., a proposal or connection ID).

Example:

1298

connection
object | null

Details of the connection related to this job, if any.

Example:

null

runtime_id
string<uuid>

A unique identifier for the specific execution instance of the job.

Example:

"3af6d254-066d-4a19-9f44-78d7f9ed28a2"

module_name
string

The name of the module or function that executed this job.

Example:

"create_compatibility_rulesets_failure_report"

created_at
string<date-time>

The timestamp when the job record was created.

Example:

"2023-12-07T23:14:23.000Z"

start_time
string<date-time> | null

The timestamp when the job started execution.

Example:

null

finish_time
string<date-time> | null

The timestamp when the job finished execution.

Example:

null

description
string | null

A human-readable description of the job.

Example:

null

total_success
integer | null

The total count of successful operations within the job.

Example:

null

total_failure
integer | null

The total count of failed operations within the job.

Example:

null

metadata
object

Represents a single metadata entry, often linking to external reports or files.

error_count
integer

The number of errors encountered during the job's execution.

Example:

0

error_logs
object[]

A list of detailed error logs generated by the job.

Example:
[]
I