DOCS

Party screening

Denied party screening

Screen으로 denied party로의 shipping을 방지합니다.

GraphQL

Screen으로 individual, company name과 address를 전달하여 정부 작성 denied party listing에 없는지 확인할 수 있습니다.

Screen 사용에 필요한 상세 

Screen을 사용하려면 person 또는 company에 대해 보유한 정보를 최대한 제공해야 합니다. 최소 name, countryCode, locality가 필요합니다.

Screen 사용 

Screen은 API 또는 Dashboard로 접근할 수 있습니다. 아래 지침에 따라 일상 operation에 Screen 통합을 시작하세요.

1mutation ScreenParty($input: PartyScreenInput!) {
2 partyScreen(input: $input) {
3 action
4 createdAt
5 createdBy
6 id
7 mode
8 party {
9 id
10 organization
11 person {
12 firstName
13 lastName
14 }
15 }
16 matches {
17 name
18 companyName
19 administrativeAreaCode
20 countryCode
21 locality
22 line1
23 line2
24 scores {
25 location
26 name
27 overall
28 }
29 deniedParty {
30 id
31 aliases
32 name
33 countryCode
34 locality
35 line1
36 line2
37 administrativeAreaCode
38 source
39 sourceUrls
40 postalCode
41 }
42 }
43 }
44}
GraphQL API ReferenceTypes, inputs, and operations used in this guide

이 페이지가 도움이 되었나요?