-
Notifications
You must be signed in to change notification settings - Fork 13
/
phonepe_jobs.json
1146 lines (1146 loc) · 37.4 KB
/
phonepe_jobs.json
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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
863
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"title": "ABT Advisor",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6012897003"
},
{
"title": "ABT Advisor",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5963478003"
},
{
"title": "ABT Advisor",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5986736003"
},
{
"title": "Associate Manager - Controllership / Reporting (F&A)",
"department": "Corporate",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5898065003"
},
{
"title": "Associate Manager– Finance & Accounts",
"department": "Corporate",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6095175003"
},
{
"title": "Associate Manager, Finance (Reporting)",
"department": "Corporate",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5964762003"
},
{
"title": "Internal Controls - Manager",
"department": "Corporate",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6028307003"
},
{
"title": "Manager, Accounting (GL)",
"department": "Corporate",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6057693003"
},
{
"title": "Product Security Engineer",
"department": "Engineering",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5557839003"
},
{
"title": "Automation and CX Platforms Specialist",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - AURBIS",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5985287003"
},
{
"title": "Associate Manager / Manager, Business Finance (Lending)",
"department": "Corporate",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5962193003"
},
{
"title": "Business Finance - Manager (Insurance)",
"department": "Corporate",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6038393003"
},
{
"title": "Manager, BizFin (Marketing & Monetisation)",
"department": "Corporate",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6036868003"
},
{
"title": "Business Analyst (2-4 Years)",
"department": "Business Enablement",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5924250003"
},
{
"title": "Business Analyst (2-4years)",
"department": "Business Enablement",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5898297003"
},
{
"title": "Customer Experience Specialist, Mutual Funds",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - AURBIS",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6008300003"
},
{
"title": "Customer Experience Specialist, Stock Broking",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - AURBIS",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5976362003"
},
{
"title": "Manager- IT Audit & Compliance",
"department": "Corporate",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5624208003"
},
{
"title": "Senior Manager, BFSI Compliance – Lending",
"department": "Corporate",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6035533003"
},
{
"title": "Content Writer",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - AURBIS",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/8634040003"
},
{
"title": "Subject Matter Expert - Derivatives (Content and Education)",
"department": "Business Development & Sales",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6048241003"
},
{
"title": "Manager, CorpFin (FP&A)",
"department": "Corporate",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6067428003"
},
{
"title": "Intern, corporate secretarial",
"department": "Corporate",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Intern",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6063652003"
},
{
"title": "Senior Lead Copywriter",
"department": "Design & Creative",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6052321003"
},
{
"title": "Sr Brand Designer",
"department": "Design & Creative",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5699967003"
},
{
"title": "Category Management (Indus App Store)",
"department": "Business Development & Sales",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5878363003"
},
{
"title": "Manager - Ad Sales",
"department": "Business Development & Sales",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5895816003"
},
{
"title": "Firmware Engineer (5-7 yrs bracket)",
"department": "Engineering",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5867065003"
},
{
"title": "Firmware Engineer (Exp. Bucket 3-5 Yrs)",
"department": "Engineering",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5647183003"
},
{
"title": "Firmware Engineer (Exp. Bucket 7-10 Yrs)",
"department": "Engineering",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5647187003"
},
{
"title": "Product Solution Engineer - Pune (1-2yrs)",
"department": "Engineering",
"location": "Pune",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5858713003"
},
{
"title": "Software Engineer",
"department": "Engineering",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5512872003"
},
{
"title": "Software Engineer (5-7 Yrs) - Core",
"department": "Engineering",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5854593003"
},
{
"title": "Software Engineer (Backend 3-5yrs)",
"department": "Engineering",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5499031003"
},
{
"title": "Software Engineer - Backend (3-5yrs), Pune",
"department": "Engineering",
"location": "Pune",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5857170003"
},
{
"title": "Software Engineer (Backend, 5-10 Years)",
"department": "Engineering",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5500338003"
},
{
"title": "Software Engineer - Backend (5-7), Pune",
"department": "Engineering",
"location": "Pune",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5825756003"
},
{
"title": "Software Engineer (Backend, 5-7 years)",
"department": "Engineering",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/4316181003"
},
{
"title": "Software Engineer - Test (4-6yrs) - (Pune)",
"department": "Engineering",
"location": "Pune",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5690077003"
},
{
"title": "UI Engineer (6-10 Years)",
"department": "Engineering",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5858973003"
},
{
"title": "Architect",
"department": "Engineering",
"location": "PPUS_California",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6036752003"
},
{
"title": "Architect - Data Platform",
"department": "Engineering",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5912086003"
},
{
"title": "Engineering Manager",
"department": "Engineering",
"location": "Amar Business Zone - Baner - Pune",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5980922003"
},
{
"title": "Engineering Manager - Frontend",
"department": "Engineering",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5993541003"
},
{
"title": "Engineering Manager - Mobile",
"department": "Engineering",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5980916003"
},
{
"title": "Engineering Manager - Test",
"department": "Engineering",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5927277003"
},
{
"title": "Product Solution Engineer",
"department": "Engineering",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5812165003"
},
{
"title": "Product Solution Engineer / SI",
"department": "Engineering",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6049339003"
},
{
"title": "SDET",
"department": "Engineering",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5998383003"
},
{
"title": "Site Reliability Engineer - BigData (On-prem)",
"department": "Engineering",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5928931003"
},
{
"title": "Software Engineer (Backend, 3 to 5 yrs)",
"department": "Engineering",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6073078003"
},
{
"title": "Software Engineer -Backend (5-7)",
"department": "Engineering",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5892873003"
},
{
"title": "Software Engineer - Backend (7-10 years), Pune",
"department": "Engineering",
"location": "Amar Business Zone - Baner - Pune",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6076913003"
},
{
"title": "Software Engineer (Backend, 7-10 Yrs)",
"department": "Engineering",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6069503003"
},
{
"title": "Techincal Project Manager",
"department": "Engineering",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5977972003"
},
{
"title": "Android Developer",
"department": "Engineering",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5502661003"
},
{
"title": "Engineering Manager - Platform",
"department": "Engineering",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5638742003"
},
{
"title": "Software Engineer (Backend, 3-5 Yrs)- Financial Services",
"department": "Engineering",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5492589003"
},
{
"title": "Software Engineer (iOS)",
"department": "Engineering",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5516363003"
},
{
"title": "UI Engineer (3-5 Years)",
"department": "Engineering",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5553054003"
},
{
"title": "Manager - Investigation Specialist",
"department": "Corporate",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5967822003"
},
{
"title": "Senior Executive - Training & Awareness",
"department": "Corporate",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6082378003"
},
{
"title": "Manager - Accounts Payable",
"department": "Corporate",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6000540003"
},
{
"title": "AM- IT CTM",
"department": "Corporate",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6037017003"
},
{
"title": "Associate Manager, Compliance Testing and Monitoring",
"department": "Corporate",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5962228003"
},
{
"title": "Compliance Lead, Financial Services Compliance",
"department": "Corporate",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6001154003"
},
{
"title": "Executive - Product risk assessment ,FS compliance",
"department": "Corporate",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6027053003"
},
{
"title": "IT Compliance Analyst",
"department": "Corporate",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5861561003"
},
{
"title": "Manager ,Policy and Governance",
"department": "Corporate",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5985361003"
},
{
"title": "Manager - HR Systems",
"department": "Corporate",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5815299003"
},
{
"title": "Assistant Manager - Curation (Indus App Store)",
"department": "Product Management",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6093692003"
},
{
"title": "Associate Manager - Content Writer ( Indus App Store)",
"department": "Product Management",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5986703003"
},
{
"title": "Senior Manager - App Partnerships - Indus Appstore",
"department": "Product Management",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6023568003"
},
{
"title": "Senior Manager - Curation (Indus App Store)",
"department": "Product Management",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5986697003"
},
{
"title": "Infosec Security Engineer- Analytics",
"department": "Tech Infra & IT",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5864166003"
},
{
"title": "Senior Information Security Engineer - Compliance",
"department": "Tech Infra & IT",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5865532003"
},
{
"title": "Category Analyst, Health Insurance",
"department": "Business Development & Sales",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5974777003"
},
{
"title": "Insurance Business Operations ( Process Analyst)",
"department": "Business Development & Sales",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5900580003"
},
{
"title": "Manager - Technology Audit",
"department": "Corporate",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5976341003"
},
{
"title": "Mis - Mumbai",
"department": "Business Development & Sales",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6028312003"
},
{
"title": "GPM",
"department": "Product Management",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6001195003"
},
{
"title": "Associate Manager - Collection Operations & Vendor Management",
"department": "Business Development & Sales",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6087230003"
},
{
"title": "Lead Collections - Consumer Lending",
"department": "Business Development & Sales",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6017795003"
},
{
"title": "Enterprise Solutions Consultant",
"department": "Business Development & Sales",
"location": "Kolkata - Ecospace business Park",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6050993003"
},
{
"title": "Head Banking Alliance",
"department": "Business Development & Sales",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5849170003"
},
{
"title": "Advisor, Grievance",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - AURBIS",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6081177003"
},
{
"title": "Associate Manager, Lending Support",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - AURBIS",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6071285003"
},
{
"title": "Associate Manager, Social Media Support",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - AURBIS",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6063759003"
},
{
"title": "CX Operations Manager, PG",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - AURBIS",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6078609003"
},
{
"title": "KYC Operations Auditor",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - AURBIS",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6063659003"
},
{
"title": "Vendor Operations, Associate Manager",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - AURBIS",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5898011003"
},
{
"title": "Operations Analyst",
"department": "Business Development & Sales",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6060886003"
},
{
"title": "Partnership Specialist",
"department": "Business Development & Sales",
"location": "Bangalore - Bellandur - AURBIS",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5980894003"
},
{
"title": "Associate Manager, Business Operations (Payments) UPI",
"department": "Business Development & Sales",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6083505003"
},
{
"title": "Business Operations Analyst, Payments",
"department": "Business Development & Sales",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6085995003"
},
{
"title": "Category Analyst - Payments",
"department": "Business Development & Sales",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5964776003"
},
{
"title": "Lead, Payments Growth",
"department": "Business Development & Sales",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6063722003"
},
{
"title": "Senior Business Operations Analyst - Payments",
"department": "Business Development & Sales",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6095056003"
},
{
"title": "Senior Business Operations Analyst, Payments",
"department": "Business Development & Sales",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6086001003"
},
{
"title": "Manager - Corporate Communications",
"department": "Business Enablement",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6067357003"
},
{
"title": "Assistant Manager, Process design",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - AURBIS",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/8631111003"
},
{
"title": "Associate Manager, Grievance",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - AURBIS",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6066121003"
},
{
"title": "Process designer",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - AURBIS",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6063647003"
},
{
"title": "Product Designer",
"department": "Design & Creative",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6072879003"
},
{
"title": "Product Designer , UX Design",
"department": "Design & Creative",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6034031003"
},
{
"title": "Sr. Product Designer",
"department": "Design & Creative",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6066392003"
},
{
"title": "Product Manager",
"department": "Product Management",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5601612003"
},
{
"title": "CX - Senior Analyst, Payments Business",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6064218003"
},
{
"title": "CX Senior Analyst, Payments Business",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6064220003"
},
{
"title": "Process Designer, Payments Business",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6064206003"
},
{
"title": "Senior Analyst Prod Ops",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - AURBIS",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6082365003"
},
{
"title": "Head of Content and Education",
"department": "Business Development & Sales",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6088334003"
},
{
"title": "Quant Researcher",
"department": "Business Development & Sales",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6074332003"
},
{
"title": "Growth Manager, PhonePe Gateway Enterprise Solutions",
"department": "Business Development & Sales",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6043552003"
},
{
"title": "Sales Capability Manager - Rural",
"department": "Business Development & Sales",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6063547003"
},
{
"title": "Advisor, Service Recovery Reds",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - AURBIS",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6030768003"
},
{
"title": "Share.market, Operations Analyst - Funds Settlement (Stock Broking)",
"department": "Business Development & Sales",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5773184003"
},
{
"title": "Site Reliability Engineer",
"department": "Tech Infra & IT",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6000589003"
},
{
"title": "Site Reliability Engineer",
"department": "Tech Infra & IT",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5921398003"
},
{
"title": "Site Reliability Engineer - Azure",
"department": "Tech Infra & IT",
"location": "Bangalore",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/5500639003"
},
{
"title": "Site Reliability Engineer - Systems",
"department": "Tech Infra & IT",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/8634955003"
},
{
"title": "Software Engineer",
"department": "Tech Infra & IT",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/8634963003"
},
{
"title": "Premium Account Executive- Hubli",
"department": "Business Development & Sales",
"location": "Bangalore - Bellandur - Salarpuria Softzone",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/8633945003"
},
{
"title": "Customer Experience Specialist, Stock Broking",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - AURBIS",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6063566003"
},
{
"title": "CX Strategy Head - Merchant Experience",
"department": "Customer Experience & Operations",
"location": "Bangalore - Bellandur - AURBIS",
"type": "Full time",
"date": "Yesterday",
"url": "https://boards.greenhouse.io/phonepe/jobs/6072908003"