Theme switcher

API Reference

Was this section helpful?

What made this section unhelpful for you?

Base URL

Production:

http://sdp.tealbook.com/graphql

Language Box

Was this section helpful?

What made this section unhelpful for you?

Introduction to SDP

The TealBook Supplier Data Platform (SDP) delivers trusted supplier data to targeted enterprise systems via API integration. SDP continuously enriches and autonomously refreshes supplier data.

TealBook provides attribute-level trust scores that can be used in conjunction with our Business Rules Engine to give you control and flexibility over which data attributes are accepted and provided.

If you have any Support inquiries, please reach out to support@tealbook.com or submit a ticket here.

Query

The Query type in GraphQL represents the entry point for retrieving data from the API. It defines the available read-only operations (queries) that clients can execute to fetch data.

Was this section helpful?

What made this section unhelpful for you?

allRecordStats

Body Parameters

filterobject

Show child attributes

Response

200
Object

Response Attributes

allRecordStatsobject Required

Show child attributes

Was this section helpful?

What made this section unhelpful for you?

POST

/

Select
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 query allRecordStats($filter: PipelinesFilterBy) { allRecordStats(filter: $filter) { cumulative_number_of_records_matched cumulative_records_matched_percentage duplicates_records_percentage number_of_duplicates_records number_of_records number_of_records_dropped number_of_records_eligible_for_matching number_of_records_failed number_of_records_hil_matched number_of_records_matched number_of_records_need_ambiguous_matching number_of_records_not_matched number_of_records_pending number_of_records_processing records_dropped_percentage records_eligible_for_matching_percentage records_failed_percentage records_hil_matched_percentage records_matched_percentage records_need_ambiguous_matching_percentage records_not_matched_percentage records_pending_percentage records_processing_percentage } }

Response

{
  "allRecordStats": {
    "cumulative_number_of_records_matched": null,
    "cumulative_records_matched_percentage": null,
    "duplicates_records_percentage": null,
    "number_of_duplicates_records": null,
    "number_of_records": null,
    "number_of_records_dropped": null,
    "number_of_records_eligible_for_matching": null,
    "number_of_records_failed": null,
    "number_of_records_hil_matched": null,
    "number_of_records_matched": null,
    "number_of_records_need_ambiguous_matching": null,
    "number_of_records_not_matched": null,
    "number_of_records_pending": null,
    "number_of_records_processing": null,
    "records_dropped_percentage": null,
    "records_eligible_for_matching_percentage": null,
    "records_failed_percentage": null,
    "records_hil_matched_percentage": null,
    "records_matched_percentage": null,
    "records_need_ambiguous_matching_percentage": null,
    "records_not_matched_percentage": null,
    "records_pending_percentage": null,
    "records_processing_percentage": null
  }
}
Was this section helpful?

What made this section unhelpful for you?

pipelineStats

Body Parameters

filterobject

Show child attributes

orderobject

Show child attributes

pagingobject

Show child attributes

Response

200
Object

Response Attributes

pipelineStatsobject Required

Show child attributes

Was this section helpful?

What made this section unhelpful for you?

POST

/

Select
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 query pipelineStats($filter: PipelinesFilterBy, $order: PipelineOrderBy, $paging: PageOptionsDto) { pipelineStats(filter: $filter, order: $order, paging: $paging) { nodes { created_at created_by cumulative_match_rate data_type id organization_id original_filename pipeline_name randomized_filename source_name status total_records } pageInfo { hasNextPage hasPreviousPage itemCount limit offset page pageCount } totalCount } }

Response

{
  "pipelineStats": {
    "nodes": {
      "created_at": null,
      "created_by": null,
      "cumulative_match_rate": null,
      "data_type": null,
      "id": null,
      "organization_id": null,
      "original_filename": null,
      "pipeline_name": null,
      "randomized_filename": null,
      "source_name": null,
      "status": null,
      "total_records": null
    },
    "pageInfo": {
      "hasNextPage": false,
      "hasPreviousPage": false,
      "itemCount": null,
      "limit": null,
      "offset": null,
      "page": null,
      "pageCount": null
    },
    "totalCount": null
  }
}
Was this section helpful?

What made this section unhelpful for you?

retrieveMatchedRecords

Body Parameters

pipeline_idstring Required

Response

200
Object

Response Attributes

retrieveMatchedRecordsarray Required

Show child attributes

Was this section helpful?

What made this section unhelpful for you?

POST

/

Select
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 query retrieveMatchedRecords($pipeline_id: string!) { retrieveMatchedRecords(pipeline_id: $pipeline_id) { fields { address_parsed { client_value merged_source merged_value tealbook_value } annual_revenue { client_value merged_source merged_value tealbook_value } cage_code { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } certifications { cert_category cert_domain cert_expiration_date cert_id cert_issue_date cert_number cert_subcategory cert_subtype cert_type certifying_body entity_type supplier_match_confidence tealbook_id tealbook_trust_score } company_name { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } complete_address { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } contacts { client_value merged_source merged_value tealbook_value } corporate_email_address { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } corporate_phone_number { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } duns_number { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } employee_count { client_value merged_source merged_value tealbook_value } facebook_page_url { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } fax_number { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } goods_and_services { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } gross_profit { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } legal_structure { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } lei { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } linkedin_page_url { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } local_exchange_symbol { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } location_type { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } long_description { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } naics { client_value merged_source merged_value tealbook_value } net_income { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } operating_income { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } ownership { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } phone_number { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } public_company_flag { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } sam_uei { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } short_description { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } sic { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } tax_id { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } total_assets { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } total_liabilities { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } twitter_page_url { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } web_domain { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } year_founded { client_value entity_type merged_source merged_value supplier_match_confidence tealbook_id tealbook_trust_score tealbook_value } } internal_source_name internal_supplier_id_or_vendor_number } }

Response

{
  "retrieveMatchedRecords": [
    {
      "fields": {
        "address_parsed": {
          "city": {
            "client_value": null,
            "merged_source": null,
            "merged_value": null,
            "tealbook_value": null
          },
          "country": {
            "client_value": null,
            "merged_source": null,
            "merged_value": null,
            "tealbook_value": null
          },
          "entity_type": null,
          "state": {
            "client_value": null,
            "merged_source": null,
            "merged_value": null,
            "tealbook_value": null
          },
          "street_address": {
            "client_value": null,
            "merged_source": null,
            "merged_value": null,
            "tealbook_value": null
          },
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "zip_postal_code": {
            "client_value": null,
            "merged_source": null,
            "merged_value": null,
            "tealbook_value": null
          }
        },
        "annual_revenue": {
          "amount": {
            "client_value": null,
            "merged_source": null,
            "merged_value": null,
            "tealbook_value": null
          },
          "currency": {
            "client_value": null,
            "merged_source": null,
            "merged_value": null,
            "tealbook_value": null
          },
          "entity_type": null,
          "reliability_indicator": {
            "merged_source": null,
            "merged_value": null,
            "tealbook_value": null
          },
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "year": {
            "merged_source": null,
            "merged_value": null,
            "tealbook_value": null
          }
        },
        "cage_code": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "certifications": {
          "cert_category": null,
          "cert_domain": null,
          "cert_expiration_date": null,
          "cert_id": null,
          "cert_issue_date": null,
          "cert_number": null,
          "cert_subcategory": null,
          "cert_subtype": null,
          "cert_type": null,
          "certifying_body": null,
          "entity_type": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null
        },
        "company_name": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "complete_address": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "contacts": {
          "contact_email": {
            "client_value": null,
            "merged_source": null,
            "merged_value": null,
            "tealbook_value": null
          },
          "contact_name": {
            "merged_source": null,
            "merged_value": null,
            "tealbook_value": null
          },
          "contact_phone_number": {
            "merged_source": null,
            "merged_value": null,
            "tealbook_value": null
          },
          "contact_title": {
            "merged_source": null,
            "merged_value": null,
            "tealbook_value": null
          },
          "entity_type": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null
        },
        "corporate_email_address": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "corporate_phone_number": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "duns_number": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "employee_count": {
          "count": {
            "client_value": null,
            "merged_source": null,
            "merged_value": null,
            "tealbook_value": null
          },
          "entity_type": null,
          "reliability_indicator": {
            "merged_source": null,
            "merged_value": null,
            "tealbook_value": null
          },
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null
        },
        "facebook_page_url": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "fax_number": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "goods_and_services": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "gross_profit": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "legal_structure": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "lei": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "linkedin_page_url": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "local_exchange_symbol": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "location_type": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "long_description": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "naics": {
          "code": {
            "client_value": null,
            "merged_source": null,
            "merged_value": null,
            "tealbook_value": null
          },
          "description": {
            "merged_source": null,
            "merged_value": null,
            "tealbook_value": null
          },
          "entity_type": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null
        },
        "net_income": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "operating_income": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "ownership": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "phone_number": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "public_company_flag": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "sam_uei": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "short_description": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "sic": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "tax_id": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "total_assets": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "total_liabilities": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "twitter_page_url": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "web_domain": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        },
        "year_founded": {
          "client_value": null,
          "entity_type": null,
          "merged_source": null,
          "merged_value": null,
          "supplier_match_confidence": null,
          "tealbook_id": null,
          "tealbook_trust_score": null,
          "tealbook_value": null
        }
      },
      "internal_source_name": null,
      "internal_supplier_id_or_vendor_number": null
    }
  ]
}
Was this section helpful?

What made this section unhelpful for you?

retrieveUnmatchedRecords

Body Parameters

pipeline_idstring Required

Response

200
Object

Response Attributes

retrieveUnmatchedRecordsarray Required

Show child attributes

Was this section helpful?

What made this section unhelpful for you?

POST

/

Select
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 query retrieveUnmatchedRecords($pipeline_id: string!) { retrieveUnmatchedRecords(pipeline_id: $pipeline_id) { address_gap_details address_status annual_revenue_bucket annual_revenue_currency annual_revenue_number cage_code city company_name complete_address contact_email country description duns_number employee_count errors { msg } internal_source_name internal_supplier_id last_payment_date lei naics sam_uei state street_address tax_id tax_id_locality unmatched_reason web_domain year_founded zip_postal_code } }

Response

{
  "retrieveUnmatchedRecords": [
    {
      "address_gap_details": null,
      "address_status": null,
      "annual_revenue_bucket": null,
      "annual_revenue_currency": null,
      "annual_revenue_number": null,
      "cage_code": null,
      "city": null,
      "company_name": null,
      "complete_address": null,
      "contact_email": null,
      "country": null,
      "description": null,
      "duns_number": null,
      "employee_count": null,
      "errors": {
        "msg": null
      },
      "internal_source_name": null,
      "internal_supplier_id": null,
      "last_payment_date": null,
      "lei": null,
      "naics": null,
      "sam_uei": null,
      "state": null,
      "street_address": null,
      "tax_id": null,
      "tax_id_locality": null,
      "unmatched_reason": null,
      "web_domain": "",
      "year_founded": null,
      "zip_postal_code": null
    }
  ]
}
Was this section helpful?

What made this section unhelpful for you?

retrieveOriginalRecords

Body Parameters

pipeline_idstring Required

Response

200
Object

Response Attributes

retrieveOriginalRecordsarray Required

Show child attributes

Was this section helpful?

What made this section unhelpful for you?

POST

/

Select
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 query retrieveOriginalRecords($pipeline_id: string!) { retrieveOriginalRecords(pipeline_id: $pipeline_id) { annual_revenue_bucket annual_revenue_currency annual_revenue_number cage_code city company_name complete_address contact_email country description duns_number employee_count internal_source_name internal_supplier_id last_payment_date lei naics sam_uei state street_address tax_id tax_id_locality web_domain { } year_founded zip_postal_code } }

Response

{
  "retrieveOriginalRecords": [
    {
      "annual_revenue_bucket": null,
      "annual_revenue_currency": null,
      "annual_revenue_number": null,
      "cage_code": null,
      "city": null,
      "company_name": null,
      "complete_address": null,
      "contact_email": null,
      "country": null,
      "description": null,
      "duns_number": null,
      "employee_count": null,
      "internal_source_name": null,
      "internal_supplier_id": null,
      "last_payment_date": null,
      "lei": null,
      "naics": null,
      "sam_uei": null,
      "state": null,
      "street_address": null,
      "tax_id": null,
      "tax_id_locality": null,
      "web_domain": [],
      "year_founded": null,
      "zip_postal_code": null
    }
  ]
}
Was this section helpful?

What made this section unhelpful for you?

spendPipelineStatsNew

Body Parameters

pipeline_idstring Required

Response

200
Object

Response Attributes

spendPipelineStatsNewobject Required

Show child attributes

Was this section helpful?

What made this section unhelpful for you?

POST

/

Select
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 query spendPipelineStatsNew($pipeline_id: String!) { spendPipelineStatsNew(pipeline_id: $pipeline_id) { created_at created_by id number_of_duplicated_vm_records number_of_spend_records_dropped number_of_spend_records_failed number_of_spend_records_mapped number_of_spend_records_processing number_of_spend_records_unmapped number_of_vm_records original_filename pipeline_name source_name spend_records_dropped_percentage spend_records_failed_percentage spend_records_mapped_percentage spend_records_processing_percentage spend_records_unmapped_percentage status total_spend_records vm_pipeline_id vm_pipeline_name } }

Response

{
  "spendPipelineStatsNew": {
    "created_at": null,
    "created_by": null,
    "id": null,
    "number_of_duplicated_vm_records": null,
    "number_of_spend_records_dropped": null,
    "number_of_spend_records_failed": null,
    "number_of_spend_records_mapped": null,
    "number_of_spend_records_processing": null,
    "number_of_spend_records_unmapped": null,
    "number_of_vm_records": null,
    "original_filename": null,
    "pipeline_name": null,
    "source_name": null,
    "spend_records_dropped_percentage": null,
    "spend_records_failed_percentage": null,
    "spend_records_mapped_percentage": null,
    "spend_records_processing_percentage": null,
    "spend_records_unmapped_percentage": null,
    "status": null,
    "total_spend_records": null,
    "vm_pipeline_id": null,
    "vm_pipeline_name": null
  }
}
Was this section helpful?

What made this section unhelpful for you?

vendorMasterPipelineStats

Body Parameters

pipeline_idstring Required

Response

200
Object

Response Attributes

vendorMasterPipelineStatsobject Required

Show child attributes

Was this section helpful?

What made this section unhelpful for you?

POST

/

Select
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 query vendorMasterPipelineStats($pipeline_id: String!) { vendorMasterPipelineStats(pipeline_id: $pipeline_id) { cumulative_number_of_records_matched number_address_only_duplicates number_name_and_address_duplicates number_name_only_duplicates number_of_hard_duplicate number_of_records number_of_records_dropped number_of_records_eligible_for_matching number_of_records_failed number_of_records_hil_matched number_of_records_matched number_of_records_need_ambiguous_matching number_of_records_not_matched number_of_records_processing number_of_soft_duplicate } }

Response

{
  "vendorMasterPipelineStats": {
    "cumulative_number_of_records_matched": null,
    "number_address_only_duplicates": null,
    "number_name_and_address_duplicates": null,
    "number_name_only_duplicates": null,
    "number_of_hard_duplicate": null,
    "number_of_records": null,
    "number_of_records_dropped": null,
    "number_of_records_eligible_for_matching": null,
    "number_of_records_failed": null,
    "number_of_records_hil_matched": null,
    "number_of_records_matched": null,
    "number_of_records_need_ambiguous_matching": null,
    "number_of_records_not_matched": null,
    "number_of_records_processing": null,
    "number_of_soft_duplicate": null
  }
}
Was this section helpful?

What made this section unhelpful for you?

Mutation

The Mutation type in GraphQL is used for modifying or creating data. It defines the operations (mutations) that allow clients to make changes to the data stored on the server, such as creating, updating, or deleting resources

Objects

Objects in GraphQL represent complex data structures. They define the fields and their types that can be queried in a GraphQL API. Objects can have nested fields and relationships with other objects.

Scalars

Scalars: Scalars in GraphQL represent primitive data types, such as String, Int, Boolean, Float, etc. They are used to define the types of individual fields in the GraphQL schema.

Enums

Enums in GraphQL define a set of possible values for a field. They represent a discrete set of options or states that a field can have. Enums help ensure type safety and provide a clear list of valid values for a field.