> For the complete documentation index, see [llms.txt](https://gp0.gitbook.io/graphql-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gp0.gitbook.io/graphql-docs/people/select-organisation-details.md).

# Select organisation details

Select basic identifying details for an organisation.

## 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"
}
```
