Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 651 Bytes

select-organisation-details.md

File metadata and controls

36 lines (29 loc) · 651 Bytes
description
Select basic identifying details for an organisation.

Select organisation details

Explanation

Organisation IDs are retrieved for a single organisation along with relevant identifying information.

query GetOrgDetailsByName($organisationName: String!) {
  organisation(organisationSearch: {nameEq: $organisationName}) {
    id
    organisationName
    dunsNumber
    globalLocationNumber
    inhouseCustomerId
    inhouseSupplierId
    organisationCountry
    isni
    ringgoldId
    standardAddressNumber
    vatNumber
  }
}

Define your organisation name variable:

{
  "organisationName": "Name here"
}