Skip to content

Commit b38badc

Browse files
committed
Add /api/v1/Individuals/{id}/Customfields response schema
1 parent 08216c4 commit b38badc

File tree

1 file changed

+224
-2
lines changed

1 file changed

+224
-2
lines changed

certified-connectors/Impexium/apiDefinition.swagger.json

Lines changed: 224 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2757,8 +2757,230 @@
27572757
"post": {
27582758
"responses": {
27592759
"200": {
2760-
"description": "Success",
2761-
"schema": {}
2760+
"description": "default",
2761+
"schema": {
2762+
"type": "object",
2763+
"properties": {
2764+
"pageNumber": {
2765+
"type": "integer",
2766+
"format": "int32",
2767+
"description": "pageNumber"
2768+
},
2769+
"dataList": {
2770+
"type": "array",
2771+
"items": {
2772+
"type": "object",
2773+
"properties": {
2774+
"fullName": {
2775+
"type": "string"
2776+
},
2777+
"id": {
2778+
"type": "string"
2779+
},
2780+
"customerType": {
2781+
"type": "string"
2782+
},
2783+
"recordNumber": {
2784+
"type": "string"
2785+
},
2786+
"showInDirectory": {
2787+
"type": "boolean"
2788+
},
2789+
"addresses": {
2790+
"type": "array",
2791+
"items": {
2792+
"type": "object",
2793+
"properties": {
2794+
"id": {
2795+
"type": "string"
2796+
},
2797+
"primary": {
2798+
"type": "boolean"
2799+
},
2800+
"line1": {
2801+
"type": "string"
2802+
},
2803+
"line2": {
2804+
"type": "string"
2805+
},
2806+
"line3": {
2807+
"type": "string"
2808+
},
2809+
"city": {
2810+
"type": "string"
2811+
},
2812+
"state": {
2813+
"type": "string"
2814+
},
2815+
"zipcode": {
2816+
"type": "string"
2817+
},
2818+
"country": {
2819+
"type": "string"
2820+
},
2821+
"stateAbbreviation": {
2822+
"type": "string"
2823+
},
2824+
"stateISOCode": {
2825+
"type": "string"
2826+
},
2827+
"type": {
2828+
"type": "string"
2829+
},
2830+
"region": {},
2831+
"latitude": {
2832+
"type": "number"
2833+
},
2834+
"longitude": {
2835+
"type": "number"
2836+
},
2837+
"showInDirectory": {
2838+
"type": "boolean"
2839+
},
2840+
"congressionalDistrict": {
2841+
"type": "string"
2842+
},
2843+
"countryData": {
2844+
"type": "object",
2845+
"properties": {
2846+
"id": {
2847+
"type": "string"
2848+
},
2849+
"name": {
2850+
"type": "string"
2851+
},
2852+
"twoLetterIsoCode": {
2853+
"type": "string"
2854+
},
2855+
"threeLetterIsoCode": {
2856+
"type": "string"
2857+
},
2858+
"code": {
2859+
"type": "integer"
2860+
}
2861+
}
2862+
}
2863+
},
2864+
"required": [
2865+
"id",
2866+
"primary",
2867+
"line1",
2868+
"line2",
2869+
"line3",
2870+
"city",
2871+
"state",
2872+
"zipcode",
2873+
"country",
2874+
"stateAbbreviation",
2875+
"stateISOCode",
2876+
"type",
2877+
"region",
2878+
"latitude",
2879+
"longitude",
2880+
"showInDirectory",
2881+
"congressionalDistrict",
2882+
"countryData"
2883+
]
2884+
}
2885+
},
2886+
"emails": {
2887+
"type": "array",
2888+
"items": {
2889+
"type": "object",
2890+
"properties": {
2891+
"primary": {
2892+
"type": "boolean"
2893+
},
2894+
"address": {
2895+
"type": "string"
2896+
},
2897+
"type": {
2898+
"type": "string"
2899+
},
2900+
"showInDirectory": {
2901+
"type": "boolean"
2902+
}
2903+
},
2904+
"required": [
2905+
"primary",
2906+
"address",
2907+
"type",
2908+
"showInDirectory"
2909+
]
2910+
}
2911+
},
2912+
"phones": {
2913+
"type": "array",
2914+
"items": {
2915+
"type": "object",
2916+
"properties": {
2917+
"id": {
2918+
"type": "string"
2919+
},
2920+
"primary": {
2921+
"type": "boolean"
2922+
},
2923+
"type": {
2924+
"type": "integer"
2925+
},
2926+
"country": {
2927+
"type": "object",
2928+
"properties": {
2929+
"id": {
2930+
"type": "string"
2931+
},
2932+
"name": {
2933+
"type": "string"
2934+
},
2935+
"twoLetterIsoCode": {
2936+
"type": "string"
2937+
},
2938+
"threeLetterIsoCode": {
2939+
"type": "string"
2940+
},
2941+
"code": {
2942+
"type": "integer"
2943+
}
2944+
}
2945+
},
2946+
"showInDirectory": {
2947+
"type": "boolean"
2948+
},
2949+
"number": {
2950+
"type": "string"
2951+
},
2952+
"extension": {},
2953+
"typeName": {
2954+
"type": "string"
2955+
}
2956+
},
2957+
"required": [
2958+
"id",
2959+
"primary",
2960+
"type",
2961+
"country",
2962+
"showInDirectory",
2963+
"number",
2964+
"extension",
2965+
"typeName"
2966+
]
2967+
}
2968+
}
2969+
},
2970+
"required": [
2971+
"fullName",
2972+
"id",
2973+
"customerType",
2974+
"recordNumber",
2975+
"showInDirectory",
2976+
"addresses",
2977+
"emails",
2978+
"phones"
2979+
]
2980+
}
2981+
}
2982+
}
2983+
}
27622984
}
27632985
},
27642986
"summary": "Update Custom Field Value",

0 commit comments

Comments
 (0)